@charset "UTF-8";
/* src/assets/scss/foundation/_index.scss */
/* 記述の仕方 */
/* src/assets/scss/foundation/_index.scss */
/* ===== 使用例（このファイルを直接ビルドしない） ==================
@use "../foundation" as f;

.title {
  font-size: f.rem(20px);           // → 1.25rem（$base-font-size:16px）
  line-height: f.lh(30px, 20px);    // → 1.5
  letter-spacing: f.spacing(40);    // → 0.04em
}

.lead {
  // スマホ幅に応じて可変（14px〜18pxを rem で制限）
  font-size: f.clamp-vw(14, 18);
}

.hero-copy {
  // 375px カンプ換算：24px 相当を vw で出す
  font-size: f.get_vw(24px, 375);
}
=================================================================== */
/* src/assets/scss/foundation/_index.scss */
/* src/assets/scss/foundation/_index.scss */
/* ===============================================
foundation/_reset.scss  （プロジェクト用 最小リセット）
目的：ブラウザ差をならしつつ、UIのデフォルトを必要以上に壊さない
方針：
  - レイアウト起点だけを調整（box-sizing, margin/padding など）
  - 文字やフォームの見た目は「継承＋最低限」に留める
  - フォーカス可視性は残す（視認性・アクセシビリティ優先）
※ overflow や font-size は reset では触らない（base.scss で管理）
=============================================== */
/* 1) ボックスモデルの一貫性 */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-width: 0; /* border-color 指定時に崩れないための初期化 */
  border-style: solid;
}

/* 2) 余白の初期化（必要最低限） */
html, body,
h1, h2, h3, h4, h5, h6,
p, blockquote, figure,
dl, dd {
  margin: 0;
  padding: 0;
}

/* 3) タイポ周り（最小限）
   - 行間は base.scss で最終的に上書きするのでここでは緩く */
html {
  -webkit-text-size-adjust: 100%; /* iOSの自動拡大を抑制 */
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  line-height: 1.5;
}

/* 4) 画像 / メディアの収まり */
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  max-width: 100%;
}

img, video {
  height: auto;
}

svg {
  vertical-align: middle;
}

/* 5) リストの初期化
   - コンポーネントで独自の丸/番号を付けやすいように */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 6) アンカー（色と装飾はコンポーネントで制御） */
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent; /* iOSのタップハイライト対策 */
}

/* 7) フォーム要素：見た目は壊しすぎず、フォントだけ継承 */
button,
input,
select,
textarea {
  font: inherit; /* フォント/サイズ/行間を継承 */
  color: inherit;
  margin: 0;
}

button {
  cursor: pointer; /* ボタンらしさは維持 */
  background: transparent; /* デフォ背景を消す（枠は保持） */
}

textarea {
  resize: vertical; /* 横リサイズはレイアウト崩れの元になりやすい */
}

/* 8) テーブル：基本は素朴に（罫線はコンポーネントで） */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th, td {
  text-align: left;
  vertical-align: top;
  padding: 0;
}

/* 9) その他の素朴な初期化 */
hr {
  height: 0;
  border: 0;
  border-top: 1px solid currentColor; /* 必要なら見た目定義 */
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

small {
  font-size: 80%;
}

/* 10) フォーカス可視性の確保（アクセシビリティ） */
:focus {
  outline: 2px solid #382620;
  outline-offset: 2px;
}

/* src/assets/scss/foundation/_index.scss */
/* src/assets/scss/foundation/_base.scss
   基礎スタイル（resetの後に読み込まれる前提）
   ※ ここでは “フォルダのまとめ役” を参照せず、
      必要なモジュールだけ個別に @use するのが安全
*/
html {
  /* 横はみ出し対策。最新ブラウザなら clip が推奨（hiddenでもOK） */
  overflow-x: clip;
  /* デフォルトはSP帯（320〜767px想定） */
  font-size: clamp(0.875rem, 0.249rem + 3.132vw, 1.75rem);
  /* PC帯：1280pxを基準に 16px を上限、14pxを下限に可変
     - f.vw(16) は 1280px 基準で 1.25vw（= 1280px時に16px）
     - clamp(min, preferred, max) で読みやすく
  */
}

body {
  position: relative;
  color: #222222;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  line-height: 150%;
  background-color: #f3efeb;
  margin: 0;
  padding: 0;
  /* 100vw はスクロールバー幅ぶんはみ出しやすいので 100% 推奨 */
  width: 100%;
  overflow-x: clip;
}
body.is-footer-sns-fixed {
  padding-bottom: 4.6875rem;
}

img {
  display: block;
  /* レイアウト衝突を避けるなら max-width の方が無難 */
  width: 100%;
  height: auto;
}

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

/* ← これだけで variables/functions/mixin を全部使える */
.p-single-page__head--shop {
  background: url("../img/shop/shop-img_p-firstview_shop_sp.png") no-repeat center center/cover;
}

.p-shop-page-items-wrapper {
  padding-top: 60px;
  padding-bottom: 160px;
}

.p-shop-page__items {
  max-width: 688px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16vw;
}

.p-shop-page-item__image {
  margin-top: 20px;
}

.p-shop-page-item__shop-name {
  position: relative;
  color: #382620;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  line-height: 150%;
  font-size: 4.8vw;
  padding-left: 4.2666666667vw;
}
.p-shop-page-item__shop-name::before {
  position: absolute;
  content: "";
  width: 6px;
  top: 0;
  left: 0;
  bottom: 0;
  background: #382620;
}

.p-shop-store-info {
  width: 89.3333333333vw;
  margin: 0 auto;
  margin-top: 5.8666666667vw;
}
.p-shop-store-info .p-shop-store-info__grid {
  display: grid;
  grid-template-columns: 1fr;
}
.p-shop-store-info .p-shop-store-info__grid .p-shop-store-info__list {
  display: grid;
  grid-auto-rows: auto;
  margin-top: 4.8vw;
  padding: 0;
  gap: 4.8vw;
}
.p-shop-store-info .p-shop-store-info__grid .p-shop-store-info__list .p-shop-store-info__row {
  display: grid;
  grid-template-columns: 21.3333333333vw 1fr; /* 左ラベル / 右内容 */
  padding-bottom: 1.3333333333vw;
  color: #222222;
  font-size: 3.7333333333vw;
  font-weight: 700;
  line-height: 150%;
  border-bottom: 1px solid #222222;
}
.p-shop-store-info .p-shop-store-info__grid .p-shop-store-info__list .p-shop-store-info__row .p-shop-store-info__term {
  min-width: 21.3333333333vw;
}
.p-shop-store-info .p-shop-store-info__grid .p-shop-store-info__list .p-shop-store-info__row .p-shop-store-info__desc a {
  transition: all 0.3s ease-in-out;
}
.p-shop-store-info .p-shop-store-info__grid .p-shop-store-info__list .p-shop-store-info__row .p-shop-store-info__desc a:hover {
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px){
  html {
    font-size: clamp(14px, 1.25vw, 16px);
  }
  .p-shop-page-items-wrapper {
    padding-top: 80px;
  }
  .p-shop-page__items {
    gap: 120px;
  }
  .p-shop-page-item__image {
    margin-top: 24px;
  }
  .p-shop-page-item__shop-name {
    padding-left: 16px;
    font-size: 24px;
  }
  .p-shop-store-info {
    margin-top: 40px;
    max-width: 688px;
  }
  .p-shop-store-info .p-shop-store-info__grid {
    grid-template-columns: 1fr 1fr; /* 左右2カラム */
    gap: 40px;
  }
  .p-shop-store-info .p-shop-store-info__grid .p-shop-store-info__list {
    width: 324px;
    margin-top: 0;
    gap: 1.5625vw;
  }
  .p-shop-store-info .p-shop-store-info__grid .p-shop-store-info__list .p-shop-store-info__row {
    font-size: 14px;
    padding-bottom: 5px;
    grid-template-columns: 80px 1fr; /* 左ラベル / 右内容 */
  }
  .p-shop-store-info .p-shop-store-info__grid .p-shop-store-info__list .p-shop-store-info__row .p-shop-store-info__term {
    min-width: 6.25vw;
  }
}
@media screen and (min-width: 1280px){
  .p-single-page__head--shop {
    background: url("../img/shop/shop-img_p-firstview_shop-pc.png") no-repeat center center/cover;
  }
  .p-shop-store-info .p-shop-store-info__grid .p-shop-store-info__list {
    gap: 20px;
  }
  .p-shop-store-info .p-shop-store-info__grid .p-shop-store-info__list .p-shop-store-info__row .p-shop-store-info__term {
    min-width: 80px;
  }
}
@media screen and (max-width: 767px){
  body.is-footer-sns-fixed {
    padding-bottom: 4.1875rem;
  }
}
/*# sourceMappingURL=shop.css.map */