* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 300;
  text-decoration:none;
}

:root {
  /* Brand Color */
  --primary: #D8372D;
  --accent-orange: #E38C00;
  --bg-orange: #FFF7EA;
  --border-orange: #FFECCE;
  --bg-cream: #FFFBF4;
  --border-cream:#FBEEE3;
  
  /* Text Color */
  --black: #000000;
  --text-sub: #949497;
  --text-disable: #C4C4CB;
  --white: #FFFFFF;
  --border: #F0F0F5;
  
  /* Layout & Spacing */
  --pc-width: 1000px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-28: 28px;
  --space-40: 40px;

  /* Font Sizes */
  --font-10: 10px;
  --font-12: 12px;
  --font-13: 13px;
  --font-14: 14px;
  --font-15: 15px;
  --font-16: 16px;
  --font-18: 18px;
}

/* =========================================
   2. Components
   ========================================= */
.c-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.c-card--accent {
  background-color: var(--bg-orange);
  border-color: var(--border-orange);
}

.c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-size: 12px;
}

.c-btn--primary {
  background-color: var(--primary);
  color: var(--white);
}

.c-heading {
  font-size: 15px;
  font-weight: 900 !important;
  margin-bottom: 10px;
}

/* メニューカードの共通コンポーネント */
.c-menu-card {
  display: flex;
  flex-direction: column;
  position: relative;
  width: calc(50% - 5px);
  padding: 12px;
  background-color: var(--white);
  border: 1px solid var(--border-cream);
  border-radius: 12px;
  text-decoration: none;
  gap: 4px;
}

/* メニュー内写真の共通化 */
.c-menu-card__photo {
  width: 100%;
  height: 106px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 6px;
}

.c-menu-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* バリエーション（サイズ調整） */
.c-menu-card__photo--medium { height: 106px; } /* お弁当用 */
.c-menu-card__photo--small { height: 78px; } /* セット用 */

.c-menu-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.popular-badge {
  font-size: 8px;
  font-weight: 800;
  padding: 6px 10px;
  color: var(--white);
  background: linear-gradient(to right, #FFB710, #FF5D00);
  display: inline-block;
  position: absolute;
  top: 0;  
  left: 0; 
  z-index: 10; 
  border-radius: 12px 0 12px 0;
}

.c-price-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}

.c-price__original {
  text-decoration: line-through;
  font-size: 10px;
  color: var(--text-sub);
}

.c-price__set {
  font-weight: 600;
  color: var(--primary);
  font-size: 12px;
}

/* テキスト系も整理 */
.c-menu-card__title { font-size: 12px; font-weight: 700; }
.c-menu-card__copy { font-size: 10px; color: var(--text-sub); }
.c-menu-card__price { font-size: 12px; font-weight: 300; display: flex; align-items: center; gap: 4px; }

/* =========================================
   2. Components
   ========================================= */

body {
  font-family: 
    LatinSystemFont, 
    "Hiragino Sans", 
    system-ui;
  -webkit-font-smoothing: antialiased;
}

.en-number {
  font-family: -apple-system, "BlinkMacSystemFont", sans-serif;
  font-size: 1.08em; 
  vertical-align: baseline;
  display: inline-block;
}


.header {
  position: fixed; 
  width: 100%;
  height: 48px;
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 100%;
  height: 100%;
  padding: 0 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  height: 48px;
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.menu {
  display: flex;
  align-items: center;
  height: 48px;
  margin-left: auto;
  gap: 6px;
}

.header-nav {
  display: flex;
  align-items: center;
  height: 48px;
  margin-left: auto;
  margin-right: 15px;
}

.nav-item {
  height: 48px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000000;
  font-size: 12px;
  font-weight: 700;
  padding: 0 8px;
}

.divider {
  width: 1px;
  height: 14px;
  background-color: var(--border);
  margin: 0 4px;
}


.hamberger-menu {
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  padding-left: 6px;
  padding-right: 16px;
}


.menu-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  visibility: hidden;
  transition: visibility 0.3s;
}

.menu-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s;
}

.menu-content {
  position: absolute;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background-color: var(--white);
  transition: right 0.3s;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 0 16px;
}

.menu-wrapper.is-active {
  visibility: visible;
}
.menu-wrapper.is-active .menu-overlay {
  opacity: 1;
}
.menu-wrapper.is-active .menu-content {
  right: 0;
}

.menu-header {
  display: flex;
  justify-content: flex-end;
}

.menu-close-btn {
  background: none;
  border: none;
  cursor: pointer;
}
.menu-list {
  list-style: none;
  padding: 20px 0;
}
.menu-list li {
  border-bottom: 1px solid var(--border);
}
.menu-list a {
  display: block;
  padding: 16px 0;
  text-decoration: none;
  color: var(--black );
  font-size: 14px;
  font-weight: 300;
}

.footer {
  background-color: #3D291F;
  color: #DA9E7E;
  padding: 20px 16px 60px 16px;
}

.footer h1 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  gap: 6px;
  max-width: 500px;
  margin: 0;
}


.footer-sns-link {
  color: #85B585;
  display: block;
}

.instagram-icon {
  width: 32px;
  height: 32px;
}

.footer-store-name {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

.footer-info {
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.info-title {
  letter-spacing: -0.2px;
  width: 128px;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-sitemap {
  display: none;
  width: 100%;
  margin-top: 16px;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px; 
}

.sitemap-list li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #b9886e30;
  padding-bottom: 6px;
}

.sitemap-list li:last-child {
  border-bottom: none;
}

.sitemap-list a {
  color: #DA9E7E;
  text-decoration: none;
  font-size: 14px;
  width: 100%; 
  line-height: 24px;
}

.footer-copy {
  font-size: 12px;
  margin-top: 40px;
  opacity: 0.8;
}



@media screen and (min-width: 768px) {
  .hamberger-menu,
  .divider,
  .nav-item {
    display: none;
  }

  .c-heading {
  font-size: 18px;
  }
  .c-menu-card {
    width: calc(33.333% - 16px);
    padding: 20px;
    gap: 8px;
  }

  .c-menu-card__photo {
    height: 200px;
  }
  .c-card, .c-card--accent {
    padding: 20px;
  }

  .c-menu-card__title { font-size: 16px; font-weight: 700; }
  .c-menu-card__copy { font-size: 13px; color: var(--text-sub); }
  .c-menu-card__price { font-size: 16px; font-weight: 300; display: flex; align-items: center; gap: 4px; }

  .c-price__set {
    font-size: 16px;
  }
  .c-price__original {
    font-size: 14px;
  }

  .header {
  position: fixed; 
  width: 100%;
  height: 58px;
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  }
  .header-inner {
    padding: 0 16px;
  }

 
  .header-logo {
    height: 58px;
    display: flex;
    align-items: center;
  }

  .header-logo img {
    height: 50px;
    width: auto;
  }

 
  .menu-wrapper {
    position: static;
    visibility: visible;
    width: auto;
    height: auto;
  }

  .menu-content {
    position: static;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
  }

  .menu-overlay,
  .menu-header {
    display: none;
  }

  
  .menu-list {
    display: flex;
    gap: 40px;
    margin-right: 6px;
  }

  .menu-list li {
    border-bottom: none;
  }

  .menu-list a {
    font-size: 14px;
    font-weight: 700;
  }

  .footer-inner {
    max-width: 968px;
    margin: auto;
    padding-top: 20px;
  }
  .footer h1 {
    font-size: 18px;
  }
  .footer-info{
    font-size: 13px;
  }
  .sitemap-list {
    display: none;
  }
}

/* ===== ユーティリティクラス ===== */
.u-margin-section {
  margin: 0 var(--space-16) var(--space-28) var(--space-16);
}
.u-padding-container {
  padding: var(--space-12) var(--space-16);
}

b, strong, .c-heading, .c-btn {
  font-weight: bold !important;
  -webkit-font-smoothing: antialiased; /* 文字をくっきりさせる（iPhone用） */
}