@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ====================================
   カラー定義（CSS Variablesと対応）
==================================== */
/* ====================================
   フォント定義
==================================== */
/* ====================================
   レイアウト・サイズ
==================================== */
/* ====================================
   シャドウ
==================================== */
/* ====================================
   スペーシング（数値は px 想定）
==================================== */
/* ====================================
   ブレイクポイント
==================================== */
/* ====================================
   Z-index 管理
==================================== */
/* ====================================
   Viewport（Fluid 用）
==================================== */
/* ==============================================
   rem変換関数
============================================== */
/* ==============================================
   Fluid関数（clamp）
============================================== */
body {
  font-family: "Noto Serif JP", serif;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.9375rem, 0.3636363636vw + 0.8522727273rem, 1.125rem);
  line-height: 1.6;
  color: #222222;
  background-color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
}

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

@media (prefers-reduced-motion: reduce) {
  #loading,
  .fade-up,
  .concept-image {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  #loading .spinner {
    animation: none !important;
  }
}
/* ==========================================================================
   Root Variables
   ========================================================================== */
:root {
  --c-accent: #8c1010;
  --c-text-main: #6e5545;
  --font-serif: "Shippori Mincho", "Noto Serif JP", serif;
  --font-sans: "Hiragino Kaku Gothic ProN", sans-serif;
  --header-height: 80px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  font-family: var(--font-serif);
}
@media (max-width: 900px) {
  .site-header {
    height: 60px;
  }
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  position: relative;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Logo (Hanging Flag)
   ========================================================================== */
.brand-flag {
  position: absolute;
  top: 0;
  left: 32px;
  width: 90px;
  height: 120px;
  z-index: 101;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}
.brand-flag:hover {
  transform: translateY(-5px);
}
.brand-flag .logo-inner {
  width: 100%;
  height: 100%;
  padding-top: 20px;
  background-color: var(--c-accent);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
}
.brand-flag .logo-inner img.logo-pc {
  height: auto;
  filter: brightness(0) invert(1);
}
@media (max-width: 900px) {
  .brand-flag .logo-inner {
    display: none;
  }
}
.brand-flag .logo-sp {
  display: none;
}
@media (max-width: 900px) {
  .brand-flag .logo-sp {
    display: block;
    width: 140px;
    height: 70px;
  }
}
.brand-flag img {
  width: 60px;
  height: auto;
  object-fit: contain;
}

/* ==========================================================================
   Header Right (Nav + SNS)
   ========================================================================== */
.header-right {
  display: flex;
  align-items: center;
  height: 100%;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
nav.main-nav {
  display: flex;
  align-items: center;
}
nav.main-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  position: relative;
  color: var(--c-accent);
  text-decoration: none;
  transition: opacity 0.3s;
  /* 区切り線 */
}
nav.main-nav .nav-item:hover {
  opacity: 0.7;
}
nav.main-nav .nav-item:not(:last-child)::after, nav.main-nav .nav-item:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 24px;
  background-color: var(--c-accent);
  opacity: 0.5;
  transform: translateY(-50%);
}
nav.main-nav .nav-item:not(:last-child)::after {
  right: 0;
}
nav.main-nav .nav-item:first-child::before {
  left: 0;
}
nav.main-nav .nav-item .en {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
nav.main-nav .nav-item .jp {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  margin-top: 2px;
  line-height: 1;
}

/* ==========================================================================
   SNS Icons
   ========================================================================== */
.sns {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-left: 20px;
  border-left: 1px solid rgba(140, 16, 16, 0.5);
  height: 30px;
}
.sns .sns-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.sns .sns-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sns .sns-link:hover {
  transform: translateY(-2px);
}

/* ==========================================================================
   Hamburger (Mobile)
   ========================================================================== */
.hamburger {
  display: none;
}
@media (max-width: 900px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
    gap: 5px;
  }
  .hamburger span {
    display: block;
    transition: all 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1),
  .hamburger span:nth-child(2) {
    width: 30px;
    height: 2px;
    background-color: #9e1a1a;
    border-radius: 2px;
  }
  .hamburger span:nth-child(3) {
    font-size: 10px;
    font-weight: 700;
    color: #9e1a1a;
    letter-spacing: 0.05em;
    margin-top: 6px;
  }
  .hamburger.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .hamburger.is-active span:nth-child(2) {
    transform: translateY(0) rotate(-45deg);
  }
  .hamburger.is-active span:nth-child(3) {
    opacity: 0;
    display: none;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .site-header .wrap {
    padding: 0 16px;
  }
  nav.main-nav,
  .sns {
    display: none;
  }
}
/* ==========================================================================
   Footer Component
   ========================================================================== */
footer {
  padding: 20px 0;
  color: white;
  font-size: 14px;
  text-align: center;
  background-color: #8c1010;
}

/* ==========================================================================
   6. コンセプトセクション (Concept)
   ========================================================================== */
.concept-section {
  position: relative;
  padding: 80px 16px;
  background: #fffaf6;
  font-family: var(--font-sans);
  overflow: hidden;
  /* 左の雲 */
  /* 右の雲 */
}
.concept-section::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 2%;
  width: 120px;
  height: 200px;
  background: url("../img/cloud.png") no-repeat center/contain;
  opacity: 0.8;
  pointer-events: none;
}
@media (max-width: 900px) {
  .concept-section::before {
    display: none;
  }
}
.concept-section::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 2%;
  width: 120px;
  height: 200px;
  background: url("../img/cloud.png") no-repeat center/contain;
  opacity: 0.8;
  pointer-events: none;
  transform: scaleX(-1);
}
@media (max-width: 900px) {
  .concept-section::after {
    display: none;
  }
}

/* ==========================================================================
   レイアウト
   ========================================================================== */
.concept-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 48px;
}
@media (max-width: 900px) {
  .concept-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .concept-inner .concept-text {
    order: 1;
  }
  .concept-inner .concept-image.left {
    order: 2;
  }
  .concept-inner .concept-image.right {
    order: 3;
  }
}

/* ==========================================================================
   画像
   ========================================================================== */
.concept-image {
  position: relative;
  justify-self: center;
  /* 左側の装飾 */
  /* 右側の装飾 */
}
.concept-image.right {
  text-align: right;
}
.concept-image img {
  width: 80%;
  height: 360px;
  object-fit: cover;
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .concept-image img {
    width: 100%;
    height: 280px;
    border-radius: 24px;
  }
}
.concept-image.left::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -30px;
  width: 140px;
  height: 100px;
  background: url("../img/tree.png") no-repeat center/contain;
  z-index: 2;
  pointer-events: none;
}
.concept-image.right::after {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  width: 160px;
  height: 120px;
  background: url("../img/tree2.png") no-repeat center/contain;
  z-index: 2;
  pointer-events: none;
}

/* ==========================================================================
   テキスト
   ========================================================================== */
.concept-text {
  text-align: center;
  padding: 0 24px;
  position: relative;
  /* Concept 英字 */
  /* 見出し */
  /* 本文 */
  /* 装飾（葉・雲） */
}
.concept-text h2 {
  font-size: 28px;
  margin: 0 0 24px;
  color: var(--c-accent-light);
}
.concept-text p {
  font-size: 16px;
  font-size: clamp(0.875rem, 0.2424242424vw + 0.8181818182rem, 1rem);
  line-height: 2;
  max-width: 520px;
  margin: 0 auto 32px;
  color: #661010;
}
.concept-text::before, .concept-text::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

/* ==========================================================================
   タイトル画像
   ========================================================================== */
.concept-title-img {
  display: block;
  margin: 0 auto 24px;
  max-width: 240px;
  width: 100%;
  height: auto;
}
@media (max-width: 600px) {
  .concept-title-img {
    max-width: 180px;
    margin-bottom: 20px;
  }
}

/* ==========================================================================
   ボタン
   ========================================================================== */
.concept-button {
  position: relative;
  display: inline-block;
  padding: 12px 36px;
  border: 1px solid #8c1010;
  color: #8c1010;
  background: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}
.concept-button::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #8c1010;
  border-right: 1px solid #8c1010;
  pointer-events: none;
}
.concept-button:hover {
  background: #b73636;
  color: #fff;
}

/* slide-in for concept images */
.concept-image {
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 2.2s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 2.2s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.concept-image.left {
  transform: translateX(-60px);
}
.concept-image.right {
  transform: translateX(60px);
}
.concept-image.is-active {
  transform: translateX(0);
  opacity: 1;
}

.concept-image.left.is-active {
  transition-delay: 0.15s;
}

.concept-image.right.is-active {
  transition-delay: 0.35s;
}

.contact-section {
  background: url(../img/bg.png) center top/cover no-repeat;
  color: #333;
  min-height: 480px;
}

.contact-inner {
  text-align: center;
  padding: 90px 24px 0 24px;
  transform: translateY(90px);
}

.contact-inner h2 {
  font-size: 28px;
  color: var(--c-accent-light);
  margin: 0 0 18px;
}

.contact-actions {
  margin-bottom: 22px;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid #661010;
  color: #661010;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(229, 57, 53, 0.12);
}

.btn-line:hover {
  transform: translateY(-1px);
  background: #fefafa;
}

.line-logo {
  width: 28px;
  height: 28px;
  background-image: url("../img/LINE_Brand_icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}

.stores {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .stores {
    gap: 5px;
    flex-wrap: nowrap;
  }
}

.store {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 150px;
  padding: 6px;
}
@media screen and (max-width: 768px) {
  .store:nth-of-type(3) .store-name {
    font-size: 14px;
  }
}
.store .store img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}
.store .store:hover img {
  transform: scale(1.05);
}
.store .store-name {
  display: block;
  font-size: 18px;
  font-size: clamp(1rem, 0.4848484848vw + 0.8863636364rem, 1.25rem);
  color: #661010;
}
.store .store-name:nth-of-type(3) {
  font-size: 14px;
}
.store .products-section {
  background: url(../img/bg-merchandise.png) center top/cover no-repeat;
  width: 100%;
  margin: 0 auto;
  padding: 200px 30px 180px 30px;
}

.products-section {
  background: url(../img/bg-merchandise.png) center top/cover no-repeat;
  padding-top: 50px;
}

.section-title {
  margin: 40px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-title h2 {
  margin: 0;
  font-size: 24px;
  color: var(--c-accent);
}

.grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 0.21fr);
  justify-content: center;
  margin-top: 200px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .grid {
    gap: 10px;
    grid-template-columns: repeat(2, 0.8fr);
    margin: 180px 20px auto 20px;
  }
}

.card {
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card .media {
  width: 100%;
  background: #eee;
  position: relative;
}

.card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card .body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  background-color: #fff;
}

.card h3 {
  margin: 0;
  font-size: 16px;
  font-size: clamp(0.9375rem, 0.3636363636vw + 0.8522727273rem, 1.125rem);
  color: #661010;
  font-weight: bold;
}

.card p.desc {
  margin: 0;
  color: var(--c-text-muted);
  font-size: 13px;
}

.meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.price {
  color: #661010;
}

.smallbtn {
  padding: 8px 12px;
  border-radius: 8px;
  background: #f5f5f5;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #fffdfb 100%);
  box-shadow: 0 6px 18px rgba(12, 12, 12, 0.06);
  will-change: transform, opacity;
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 280ms ease;
}

@keyframes cakePop {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    filter: blur(0.2px);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.04);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.card.is-visible {
  animation: cakePop 560ms cubic-bezier(0.22, 0.9, 0.25, 1) both;
  box-shadow: 0 14px 36px rgba(12, 12, 12, 0.12);
}

.media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  background: linear-gradient(180deg, #fff, #fff9f7);
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 48px rgba(12, 12, 12, 0.14);
}

.body h3 {
  margin: 8px 0 6px;
  font-weight: 600;
}

.meta {
  color: #555;
  font-size: 0.95rem;
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .card.is-visible,
  .card:hover,
  .media img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
    filter: none !important;
  }
}
/* ==========================================================================
   4. ヒーローセクション (Hero)
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: url("../img/hero-main.png") center/cover no-repeat;
}
@media (max-width: 768px) {
  .hero {
    background-image: url("../img/main_sp.png");
    min-height: 95vh;
    min-height: 95dvh;
  }
}
.hero .hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px;
  transform: translateY(-3.125rem);
  text-align: left;
}

/* ==========================================================================
   装飾テキスト（KAMIHIKOKI）
   ========================================================================== */
.KAMIHIKOKI {
  position: absolute;
  left: 50%;
  bottom: -1%;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
  white-space: nowrap;
  pointer-events: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  font-family: var(--font-serif);
  font-weight: 700;
  color: #fff;
  font-size: clamp(40px, 11vw, 170px);
  line-height: 0.9;
  letter-spacing: 6px;
  text-transform: uppercase;
  opacity: 0.95;
}

/* ==========================================================================
   見出し
   ========================================================================== */
.hero h1 {
  margin: 0 0 10px;
  color: #8c1010;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1.44px;
  font-size: clamp(1.75rem, 1.696969697vw + 1.3522727273rem, 2.625rem);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .hero h1 {
    writing-mode: vertical-rl;
    color: #fff;
    font-size: 26px;
    font-size: clamp(1.5rem, 1.4545454545vw + 1.1590909091rem, 2.25rem);
    line-height: 1.8;
    font-weight: bold;
    letter-spacing: 0.15em;
    margin: 0 auto;
    padding: 0 10px;
    text-shadow: 0px 0px 8.5px rgba(0, 0, 0, 0.4980392157);
  }
}

/* ==========================================================================
   説明文
   ========================================================================== */
.hero p {
  margin: 0 0 18px;
  font-size: 18px;
  opacity: 0.95;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   ボタン
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 12px 20px;
  background: var(--c-accent-light);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(183, 54, 54, 0.18);
}

#loading {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loading.loaded {
  opacity: 0;
  visibility: hidden;
}
#loading .spinner {
  width: 48px;
  height: 48px;
  border: 5px solid #ddd;
  border-top-color: #6e5545;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.6s ease-out, transform 1.6s ease-out;
}

.fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   9. モバイル用ドロワー (Drawer)
   ========================================================================== */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 72%;
  max-width: 320px;
  height: 100dvh;
  background: #fff;
  box-shadow: 6px 0 30px rgba(0, 0, 0, 0.15);
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  z-index: 60;
  padding: 18px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.drawer.open {
  transform: translateX(0);
}
.drawer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 100px;
}
.drawer nav a {
  padding: 12px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  color: var(--c-accent);
  font-weight: 700;
  text-decoration: none;
}
.drawer nav a:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}
.drawer nav a span {
  display: block;
  font-size: 12px;
  color: var(--c-text-muted);
  font-weight: 500;
  margin-top: 4px;
}
.drawer .drawer-sns .sns-link {
  transition: opacity 0.3s;
}
.drawer .drawer-sns .sns-link:hover {
  opacity: 0.7;
}
.drawer .drawer-sns .sns-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 背景オーバーレイ */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* ドロワー開閉時に body スクロールを止める */
.body--no-scroll {
  overflow: hidden;
  touch-action: none;
}

.drawer-sns {
  margin-top: auto;
  display: flex;
  gap: 16px;
  justify-content: left;
}
.drawer-sns .sns-link {
  display: inline-flex;
  width: 55px;
  height: 55px;
}
.drawer-sns .sns-link img {
  width: 100%;
  height: auto;
}

.not-found-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding: 2rem;
  text-align: center;
  background-color: #fdfaf6;
}
.not-found-page .not-found-main {
  max-width: 1200px;
  width: 100%;
}
.not-found-page .not-found__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #333;
}
.not-found-page .not-found__text {
  font-size: 1rem;
  color: #555;
}
.not-found-page .not-found__text .not-found__link {
  color: #0073aa;
  text-decoration: underline;
}
.not-found-page .not-found__text .not-found__link:hover {
  text-decoration: none;
}

.shop-section {
  position: relative;
  padding: 80px 16px;
  background-color: #fffcf8;
  overflow: hidden;
  min-height: 90vh;
}
.shop-section .shop-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 890px) {
  .shop-section .shop-inner {
    max-width: 600px;
  }
}

.shop-title-area {
  text-align: center;
  margin-bottom: 60px;
}
.shop-title-area .title-deco {
  display: block;
  width: 190px;
  margin: 0 auto 8px;
}
.shop-title-area .shop-title {
  font-family: var(--font-serif);
  font-size: 32px;
  color: #8c1010;
  margin: 0;
}
.shop-title-area .shop-title .en {
  display: block;
  font-size: 20px;
  font-weight: bold;
}
.shop-title-area .shop-title .jp {
  display: block;
  font-size: 14px;
  margin-top: 4px;
}

.shop-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
.shop-item:last-child {
  margin-bottom: 0;
}

.shop-image {
  flex-shrink: 0;
  width: 415px;
}
.shop-image img {
  width: 100%;
  height: 256px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.shop-image.logo-only img {
  height: auto;
  object-fit: contain;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 50%;
}

.shop-details {
  flex-grow: 1;
  max-width: 350px;
}
.shop-details .shop-name {
  font-size: 18px;
  font-size: clamp(1rem, 0.7272727273vw + 0.8295454545rem, 1.375rem);
  color: #661010;
  margin: 0 0 15px;
}
.shop-details .shop-name:last-child {
  font-size: clamp(0.9375rem, 0.3636363636vw + 0.8522727273rem, 1.125rem);
}
.shop-details dl {
  margin: 30px 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 15px 4px;
  padding: 0;
  font-size: 14px;
  font-size: clamp(0.8125rem, 0.2424242424vw + 0.7556818182rem, 0.9375rem);
  justify-items: start;
}
.shop-details dl dt {
  font-weight: bold;
  color: #8c1010;
}
.shop-details dl dd {
  text-align: left;
  margin: 0;
  color: #666;
}
.shop-details dl dd a {
  font-size: 20px;
}

.shop-map {
  flex-shrink: 0;
  width: 380px;
}
.shop-map img,
.shop-map iframe {
  width: 100%;
  height: 250px;
  border: 1px solid #ddd;
  object-fit: cover;
}

.cloud-decoration {
  position: absolute;
  width: 200px;
  height: 150px;
  background: url("/img/cloud2.png") no-repeat center/contain;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}
.cloud-decoration.cloud-tl {
  top: 10%;
  left: 5%;
}
.cloud-decoration.cloud-tr {
  top: 20%;
  right: 5%;
  transform: scaleX(-1);
}
.cloud-decoration.cloud-bl {
  bottom: 10%;
  left: 10%;
}
.cloud-decoration.cloud-br {
  bottom: 30%;
  right: 8%;
  transform: scaleX(-1);
}

@media (max-width: 1200px) {
  .shop-section {
    padding: 40px 16px;
  }
  .shop-item {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 50px 30px;
  }
  .shop-image,
  .shop-map {
    width: 100%;
    max-width: 400px;
  }
  .shop-image img,
  .shop-map img {
    height: auto;
  }
  .shop-details {
    max-width: 100%;
    text-align: center;
  }
  .shop-details .shop-name {
    margin-top: 10px;
  }
  .shop-details dl {
    text-align: center;
  }
}
.shop-map {
  background-color: #eee;
  background-image: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  overflow: hidden;
}
.shop-map iframe {
  display: block;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.shop-item {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
  transition: opacity 2.2s cubic-bezier(0.2, 0.9, 0.2, 1), transform 2.2s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.shop-item.is-active {
  opacity: 1;
  transform: translateY(0);
}
.shop-item:nth-of-type(1).is-active {
  transition-delay: 0.1s;
}
.shop-item:nth-of-type(2).is-active {
  transition-delay: 0.3s;
}
.shop-item:nth-of-type(3).is-active {
  transition-delay: 0.5s;
}
.shop-item:nth-of-type(4).is-active {
  transition-delay: 0.7s;
}
.shop-item:nth-of-type(5).is-active {
  transition-delay: 0.9s;
}
.shop-item:nth-of-type(6).is-active {
  transition-delay: 1.1s;
}
.shop-item:hover {
  transform: translateY(-4px);
  transition-duration: 0.28s;
}

@media (max-width: 900px) {
  .shop-item {
    transform: translateY(14px);
    transition-duration: 1.4s;
  }
  .shop-item:nth-of-type(1).is-active {
    transition-delay: 0s;
  }
  .shop-item:nth-of-type(2).is-active {
    transition-delay: 0.06s;
  }
  .shop-item:nth-of-type(3).is-active {
    transition-delay: 0.12s;
  }
  .shop-item:nth-of-type(4).is-active {
    transition-delay: 0.18s;
  }
  .shop-map {
    animation-duration: 1.6s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .shop-map,
  .shop-item {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    background-position: center !important;
  }
  .shop-item:hover {
    transform: none !important;
  }
}/*# sourceMappingURL=style.css.map */