@charset "utf-8";
.u-pb10 {
  padding-bottom: 10px;
}
.u-pb15 {
  padding-bottom: 15px;
}
.u-pb20 {
  padding-bottom: clamp(10px, var(--px-20), 20px);
}
.u-pb30 {
  padding-bottom: clamp(15px, var(--px-30), 30px);
}
.u-pb40 {
  padding-bottom: clamp(20px, var(--px-40), 40px);
}
.u-pb50 {
  padding-bottom: clamp(25px, var(--px-50), 50px);
}
.u-pb60 {
  padding-bottom: clamp(30px, var(--px-60), 60px);
}
.u-pb70 {
  padding-bottom: clamp(30px, var(--px-70), 70px);
}
.u-pb80 {
  padding-bottom: clamp(40px, var(--px-80), 80px);
}
.u-pb90 {
  padding-bottom: clamp(40px, var(--px-90), 90px);
}
.u-pb100 {
  padding-bottom: clamp(50px, var(--px-100), 100px);
}
.u-pb120 {
  padding-bottom: clamp(50px, var(--px-120), 120px);
}
.u-mb10 {
  margin-bottom: 10px;
}
.u-mb15 {
  margin-bottom: 15px;
}
.u-mb20 {
  margin-bottom: clamp(10px, var(--px-20), 20px);
}
.u-mb30 {
  margin-bottom: clamp(15px, var(--px-30), 30px);
}
.u-mb40 {
  margin-bottom: clamp(20px, var(--px-40), 40px);
}
.u-mb50 {
  margin-bottom: clamp(25px, var(--px-50), 50px);
}
.u-mb60 {
  margin-bottom: clamp(30px, var(--px-60), 60px);
}
.u-mb70 {
  margin-bottom: clamp(30px, var(--px-70), 70px);
}
.u-mb80 {
  margin-bottom: clamp(40px, var(--px-80), 80px);
}
.u-mb90 {
  margin-bottom: clamp(40px, var(--px-90), 90px);
}
.u-mb100 {
  margin-bottom: clamp(50px, var(--px-100), 100px);
}
.u-mb120 {
  margin-bottom: clamp(50px, var(--px-120), 120px);
}

/* =====================
  page-about: こだわりページ
===================== */

/* MV */
.c-page-mv {
  position: relative;
  height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 200px;
}
.c-page-mv__bg {
  position: absolute;
  inset: 0;
}
.c-page-mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-page-mv__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.c-page-mv__title {
  position: relative;
  z-index: 1;
  font-family: "shinryu", sans-serif;
  font-size: 80px;
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.06em;
  line-height: 1;
}
.c-page-mv__line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 14px;
  background: #ac7506;
  z-index: 1;
}

/* セクション共通ヘッド */
.p-about-section-head {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 40px;
}
.p-about-section-head__en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 6.667vw, 96px);
  color: rgba(252, 175, 23, 0.2);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: -30px;
}
.p-about-section-head__ja {
  font-family: "shinryu", sans-serif;
  font-size: clamp(36px, 4.861vw, 70px);
  color: #783b00;
  letter-spacing: 0.06em;
  font-weight: normal;
  position: relative;
  z-index: 1;
}
/* 共通: 装飾線 c-line */
.c-line {
  display: flex;
  justify-content: center;
}
.c-line img {
  width: clamp(200px, 46vw, 663px);
  height: 2px;
}
.p-about-section-head--light .p-about-section-head__en {
  color: rgba(252, 175, 23, 0.1);
}
/* 縦書き「こだわり」レイアウト */
.p-about-section-head--vertical {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(16px, 4.3vw, 62px);
  text-align: left;
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(20px, 3vw, 40px);
  padding-left: clamp(20px, 4.3vw, 62px);
  padding-right: clamp(16px, 5vw, 80px);
}
.p-about-section-head--vertical .p-about-section-head__ja {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  font-feature-settings: "vert" 1;
  text-orientation: upright;
  line-height: 1;
  letter-spacing: 0.06em;
  height: auto;
  margin: 0;
}
.p-about-section-head--vertical .p-about-section-head__inner {
  flex: 1;
  min-width: 0;
}
.p-about-section-head--vertical .p-about-section-head__en {
  margin-bottom: 8px;
  text-align: left;
}
.p-about-section-head--vertical .c-line {
  justify-content: flex-start;
  margin-top: 0;
}

@media screen and (max-width: 680px) {
  /* スマホ時は中央寄せ横書き (こだわり→線→PREJUDICE の順) */
  .p-about-section-head--vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 60px 16px 40px;
    text-align: center;
  }
  .p-about-section-head--vertical .p-about-section-head__ja {
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-feature-settings: normal;
    order: 1;
    margin: 0 0 12px;
  }
  .p-about-section-head--vertical .p-about-section-head__inner {
    display: contents;
  }
  .p-about-section-head--vertical .c-line {
    order: 2;
    justify-content: center;
    margin: 0 0 8px;
  }
  .p-about-section-head--vertical .p-about-section-head__en {
    order: 3;
    text-align: center;
    margin: 0;
  }
}

/* こだわりセクション */
.p-about-kodawari {
  position: relative;
  padding-bottom: 80px;
}
.c-bg-beige {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.c-bg-beige img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* こだわりアイテム */
.p-about-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  max-width: 1360px;
  margin: 0 auto 60px;
  padding: 0 clamp(16px, 3.5vw, 46px);
}
.p-about-item--reverse {
  flex-direction: row-reverse;
}
.p-about-item__frame {
  position: relative;
  z-index: 2;
  flex: 0 0 clamp(300px, 49.4vw, 712px);
  aspect-ratio: 89 / 79;
}
.p-about-item__frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}
.p-about-item__content {
  position: relative;
  z-index: 1;
  padding: clamp(30px, 5vw, 80px) clamp(20px, 4vw, 60px);
}
.p-about-item__num {
  font-family: "shinryu", sans-serif;
  font-size: clamp(32px, 3.47vw, 50px);
  color: #783b00;
  letter-spacing: -0.08em;
  margin-bottom: 55px;
  text-align: center;
  line-height: 1.2;
}
.p-about-item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.083vw, 30px);
  color: #000;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  line-height: 1.4;
  text-align: center;
}
.p-about-item__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.111vw, 16px);
  color: #333;
  letter-spacing: 0.06em;
  line-height: 2.2;
}
.p-about-item__img {
  position: relative;
  z-index: 2;
  flex: 0 0 clamp(280px, 43.8vw, 631px);
  height: clamp(280px, 35.2vw, 507px);
  overflow: hidden;
  margin-left: clamp(-60px, -3vw, -16px);
}
.p-about-item--reverse .p-about-item__img {
  margin-left: 0;
  margin-right: clamp(-60px, -3vw, -16px);
}
.p-about-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* おすすめメニュー */
.p-about-menu {
  position: relative;
  padding: 80px 0;
  /* グラデ遷移用: 上端でbg-beigeが透けて見えるベース */
  background: url("../img/bg-beige.webp") no-repeat center / cover;
}
.p-about-menu__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  /* 上端をフェードして前セクション(beige)とグラデーション遷移 (固定px) */
  mask-image: linear-gradient(to bottom, transparent 0px, black 180px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0px, black 180px);
}
@media screen and (max-width: 680px) {
  .p-about-menu__bg {
    mask-image: linear-gradient(to bottom, transparent 0px, black 120px);
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0px,
      black 120px
    );
  }
}
.p-about-menu__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-about-logo-watermark {
  position: absolute;
  left: -8%;
  top: 50%;
  transform: translateY(-50%) rotate(-3.77deg);
  width: 44%;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}
.p-about-logo-watermark img {
  width: 100%;
}
.p-about-menu__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1360px;
  margin: 0 auto;
}
.p-about-menu__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-about-menu__img {
  height: clamp(200px, 26.5vw, 382px);
  overflow: hidden;
}
.p-about-menu__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-about-menu__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.p-about-menu__name {
  font-size: clamp(13px, 1.25vw, 18px);
  color: #fcaf17;
  letter-spacing: 0.06em;
  line-height: 2.2;
  margin-bottom: 4px;
}
.p-about-menu__desc {
  font-size: clamp(12px, 1.111vw, 16px);
  color: #333;
  letter-spacing: 0.06em;
  line-height: 2.2;
}

/* 店舗案内 */
.c-store {
  background: #000;
  padding: clamp(40px, 5.5vw, 80px) 0;
}
.c-store__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
.c-store__info {
  flex: 0 0 50%;
  padding: clamp(20px, 3.5vw, 50px) clamp(16px, 5.5vw, 80px)
    clamp(30px, 4vw, 60px);
  position: relative;
}
.c-store__en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 6.667vw, 96px);
  color: rgba(255, 255, 255, 0.16);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: -20px;
}
.c-store__ja {
  font-family: "shinryu", sans-serif;
  font-size: clamp(32px, 4.861vw, 70px);
  color: #fff;
  letter-spacing: 0.06em;
  font-weight: normal;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  text-align: center;
}
.c-store__lines {
  margin-bottom: 20px;
  width: 100%;
}
.c-store__lines img {
  width: 100%;
  max-width: 500px;
}
.c-store__dl {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 1.111vw, 16px);
  letter-spacing: 0.06em;
}
.c-store__row {
  display: flex;
  gap: 16px;
  line-height: 2.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 0;
}
.c-store__row dt {
  flex: 0 0 80px;
  color: rgba(255, 255, 255, 0.7);
}
.c-store__row dd span {
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.7);
}
.c-store__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.c-store__tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fcaf17;
  border-radius: 63px;
  padding: 12px 24px;
  min-width: 220px;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}
.c-store__tel:hover {
  opacity: 1;
  background: #783b00;
  color: #fff;
}
.c-store__tel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.c-store__tel-icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}
.c-store__tel-num {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1.528vw, 22px);
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.c-store__btn {
  display: inline-block;
  background: #fcaf17;
  border-radius: 35px;
  padding: 10px 28px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 1.111vw, 16px);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.c-store__photo {
  flex: 0 0 50%;
  overflow: hidden;
  height: clamp(300px, 42.8vw, 617px);
}
.c-store__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Instagram バナー */
.c-instagram {
  position: relative;
  height: clamp(200px, 31.4vw, 453px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.c-instagram__bg {
  position: absolute;
  inset: 0;
}
.c-instagram__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-instagram__banner {
  position: relative;
  z-index: 1;
  width: clamp(300px, 50.7vw, 731px);
}
.c-instagram__banner img {
  width: 100%;
}

/* MAP */
.c-map {
  line-height: 0;
}
.c-map iframe {
  display: block;
  width: 100%;
  height: clamp(200px, 25.4vw, 366px);
  border: none;
}

/* スマホ対応 */
@media screen and (max-width: 820px) {
  .c-page-mv {
    height: 400px;
    padding-bottom: 50px;
  }
  .c-page-mv__title {
    font-size: 48px;
  }
  .p-about-item {
    flex-direction: column !important;
    gap: 20px;
    margin-bottom: 40px;
  }
  .p-about-item__frame {
    flex: none;
    width: 100%;
    min-height: 320px;
  }
  .p-about-item__img {
    flex: none;
    width: 100%;
    height: 220px;
    order: -1;
  }
  .p-about-menu__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-inline: 20px;
  }
  .c-store__inner {
    flex-direction: column;
  }
  .c-store__info {
    flex: none;
    width: 100%;
  }
  .c-store__photo {
    flex: none;
    width: 100%;
    height: 240px;
  }
  .p-about-logo-watermark {
    display: none;
  }
  .p-about-item__title {
    margin-bottom: 10px;
  }
  .p-about-item__num {
    margin-bottom: 10px;
  }
  .p-about-item__frame-img {
    display: none;
  }
}

@media screen and (max-width: 680px) {
  .c-page-mv {
    height: 300px;
    padding-bottom: 100px;
  }
  .c-page-mv__title {
    font-size: 36px;
  }
  .p-about-item__frame {
    min-height: 260px;
  }
  .c-store__row {
    flex-direction: column;
    gap: 0;
  }
  .c-store__row dt {
    flex: none;
  }
  .c-instagram {
    height: auto;
    padding: 30px 16px;
  }
  .c-instagram__banner {
    width: 100%;
  }
}

/* =====================
  page-food: お料理ページ
===================== */

/* メニューセクション全体 */
.p-food-menu {
  position: relative;
  padding-bottom: 80px;
  padding-top: clamp(50px, var(--px-120), 120px);
}

/* ロゴ透かし */
.c-logo-watermark {
  position: absolute;
  left: -8%;
  top: 30%;
  transform: rotate(-3.77deg);
  width: 44%;
  z-index: 0;
  pointer-events: none;
}
.c-logo-watermark img {
  width: 100%;
}

/* 各カテゴリセクション */
.p-food-section {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto 70px;
  padding: 0 clamp(16px, 5.5vw, 80px);
}

/* セクション見出し */
.p-food-section__head {
  text-align: center;
  margin-bottom: 30px;
}
.p-food-section__store {
  font-family: "shinryu", sans-serif;
  font-size: clamp(28px, 3.47vw, 50px);
  color: #783b00;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 0;
}
.p-food-section__title {
  font-family: "shinryu", sans-serif;
  font-size: clamp(28px, 3.47vw, 50px);
  color: #783b00;
  letter-spacing: 0.06em;
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 8px;
}
/* メニューリスト 2列レイアウト */
.p-food-list-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(20px, 3vw, 60px);
}
.p-food-list {
  margin: 0;
  padding: 0;
}
.p-food-list__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  border-bottom: 1px solid #c8a87a;
  padding: 0;
  line-height: 81px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 1.111vw, 16px);
  color: #333;
  letter-spacing: 0.06em;
}
.p-food-list__row dt {
  flex: 1;
  white-space: nowrap;
}
.p-food-list__row dd {
  flex: 0 0 auto;
  white-space: nowrap;
  text-align: right;
}

/* スマホ対応 */
@media screen and (max-width: 820px) {
  .c-logo-watermark {
    display: none;
  }
  .p-food-section {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 680px) {
  .p-food-list-wrap {
    grid-template-columns: 1fr;
  }
  .p-food-list__row {
    line-height: 60px;
    font-size: 13px;
  }
  .p-food-list__row dt {
    white-space: normal;
  }
}

/* =====================
  page-drink: お飲み物ページ
===================== */

.p-drink-menu {
  position: relative;
  padding-bottom: 80px;
  padding-top: clamp(50px, var(--px-120), 120px);
}

/* 中央寄せの狭い1列セクション (ハイボール) */
.p-drink-section--narrow {
  max-width: 700px;
}

/* 写真付きセクション (ビール, 焼酎ボトル) */
.p-drink-section--with-photo .p-food-list__row dt {
  white-space: normal;
}
.p-drink-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 60px);
  align-items: start;
}
.p-drink-list--half {
  width: 100%;
}
.p-drink-photo {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}
.p-drink-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-drink-photo--stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-drink-photo--stack img {
  width: 100%;
  height: auto;
}

/* セクション内 下方の写真配置 (焼酎グラス, 日本酒) */
/* 右列: リスト + 画像の縦並び (焼酎・グラス用) */
.p-drink-col {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 36px);
}
.p-drink-col__photo {
  overflow: hidden;
  width: 100%;
  flex: 1;
  min-height: clamp(200px, 24vw, 340px);
}
.p-drink-col__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-drink-photo-below {
  margin-top: 30px;
  overflow: hidden;
  width: 50%;
  height: clamp(220px, 28.9vw, 416px);
}
.p-drink-photo-below--right {
  margin-left: auto;
}
.p-drink-photo-below--center {
  margin-inline: auto;
}
.p-drink-photo-below img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 2セクション横並び (ノンアルカクテル + ソフトドリンク) */
.p-drink-double {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5.5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 60px);
}
.p-drink-double .p-food-section {
  margin: 0;
  padding: 0;
  max-width: none;
}

/* スマホ対応 */
@media screen and (max-width: 820px) {
  .p-drink-photo-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .p-drink-photo--stack {
    flex-direction: row;
  }
  .p-drink-photo--stack img {
    width: 50%;
  }
  .p-drink-photo-below {
    width: 80%;
    margin-inline: auto;
  }
}

@media screen and (max-width: 680px) {
  .p-drink-double {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .p-drink-photo--stack {
    flex-direction: column;
  }
  .p-drink-photo--stack img {
    width: 100%;
  }
  .p-drink-photo-below {
    width: 100%;
    height: 220px;
  }
}
/*手動*/
.p-drink-photo--stack .p-drink-photo-img__small {
  width: 60%;
  margin-left: auto;
}
/*end*/
/* =====================
  page-gallery: ギャラリーページ
===================== */
.p-gallery {
  position: relative;
  padding-bottom: 80px;
}
.p-gallery__intro {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 70px) clamp(16px, 5.5vw, 80px)
    clamp(30px, 3vw, 50px);
  text-align: center;
}
.p-gallery__intro .c-line {
  margin-bottom: clamp(20px, 2.5vw, 35px);
}
.p-gallery__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.111vw, 16px);
  color: #000;
  letter-spacing: 0.06em;
  line-height: 2.2;
  text-align: left;
  max-width: 854px;
  margin: 0 auto;
}
.p-gallery__grid {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5.5vw, 80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 1.6vw, 23px);
}
.p-gallery__item {
  position: relative;
  aspect-ratio: 302 / 214;
  overflow: hidden;
  background: #eee;
}
.p-gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* スマホ対応 */
@media screen and (max-width: 820px) {
  .p-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 680px) {
  .p-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .p-gallery__intro {
    padding: 30px 16px 20px;
  }
}

/* =====================
  共通: c-section-head (見出し+装飾線)
===================== */
.c-section-head {
  text-align: center;
  margin-bottom: 40px;
}
.c-section-head__title {
  font-family: "shinryu", sans-serif;
  font-size: clamp(28px, 3.47vw, 50px);
  color: #783b00;
  letter-spacing: 0.06em;
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: 12px;
}
.c-section-head__store {
  font-family: "shinryu", sans-serif;
  font-size: clamp(28px, 3.47vw, 50px);
  color: #783b00;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 0;
}
/* 大きめ見出し (70px) */
.c-section-head--lg .c-section-head__title {
  font-size: clamp(36px, 4.861vw, 70px);
  margin-bottom: 24px;
}

/* =====================
  page-info: 店舗案内ページ
===================== */
.p-info {
  position: relative;
  padding: clamp(50px, 6vw, 90px) 0 80px;
}
.p-info__section {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto clamp(50px, 6vw, 90px);
  padding: 0 clamp(16px, 5.5vw, 80px);
}
.p-info__section:last-child {
  margin-bottom: 0;
}
.p-info__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.111vw, 16px);
  color: #000;
  letter-spacing: 0.06em;
  line-height: 2.2;
  max-width: 854px;
  margin: 0 auto;
}

/* 店舗概要テーブル */
.p-info__box {
  background: rgba(255, 255, 255, 0.58);
  max-width: 825px;
  margin: 0 auto;
  padding: clamp(20px, 2.5vw, 36px) clamp(20px, 4vw, 60px);
}
.p-info__table {
  margin: 0;
}
.p-info__row {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(10px, 1.3vw, 18px) 0;
  border-bottom: 1px dashed #b09060;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 1.111vw, 16px);
  color: #333;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
.p-info__row:last-child {
  border-bottom: none;
}
.p-info__row dt {
  flex: 0 0 clamp(80px, 8vw, 120px);
  font-weight: 500;
}
.p-info__row dd {
  flex: 1;
  margin: 0;
}

/* アクセス */
.p-info__access {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.111vw, 16px);
  color: #333;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.p-info__pin {
  display: inline-flex;
  width: 20px;
  height: 26px;
}
.p-info__pin svg {
  width: 100%;
  height: 100%;
}
.p-info__map {
  max-width: 901px;
  margin: 0 auto;
  line-height: 0;
  overflow: hidden;
}
.p-info__map iframe {
  display: block;
  width: 100%;
  height: clamp(240px, 29.9vw, 430px);
  border: 0;
}

/* スマホ対応 */
@media screen and (max-width: 820px) {
  .p-info__row {
    flex-direction: column;
    gap: 4px;
  }
  .p-info__row dt {
    flex: none;
    color: #783b00;
  }
}

@media screen and (max-width: 680px) {
  .p-info__box {
    padding: 20px 16px;
  }
  .p-info__lead {
    text-align: left;
  }
}

/* =====================
  archive: アーカイブページ
===================== */
.p-archive {
  position: relative;
  padding: clamp(40px, 5vw, 72px) 0 clamp(60px, 8vw, 120px);
}
.p-archive__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5.55vw, 80px);
}
.p-archive__list {
  list-style: none;
  margin: 0 0 clamp(40px, 5vw, 60px);
  padding: 0;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding-inline: clamp(20px, 3vw, 40px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.p-archive__item {
  border-bottom: 1px dashed #c8a87a;
}
.p-archive__item:last-child {
  border-bottom: none;
}
.p-archive__link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 2.5vw, 32px);
  align-items: center;
  padding: clamp(18px, 2vw, 28px) 0;
  text-decoration: none;
  color: #333;
  transition: opacity 0.25s ease;
}
.p-archive__link:hover {
  opacity: 0.7;
  color: #333;
}
.p-archive__thumb {
  width: clamp(80px, 10vw, 140px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: #f5ecd5;
}
.p-archive__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-archive__body {
  min-width: 0;
}
.p-archive__date {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 1.111vw, 16px);
  color: #be8948;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.p-archive__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.389vw, 20px);
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 0;
}
.p-archive__excerpt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.111vw, 14px);
  color: #555;
  line-height: 1.7;
  margin: 6px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-archive__empty {
  text-align: center;
  padding: clamp(40px, 5vw, 80px) 0;
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.25vw, 18px);
}

/* ページネーション */
.p-archive__pagination {
  display: flex;
  justify-content: center;
  margin-top: clamp(30px, 4vw, 60px);
}
.p-archive__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.p-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.25s ease;
}
.p-archive__pagination .page-numbers:hover {
  background: #fcaf17;
  color: #fff;
  opacity: 1;
}
.p-archive__pagination .page-numbers.current {
  background: #fcaf17;
  color: #fff;
}
.p-archive__pagination .page-numbers.dots {
  background: transparent;
}

/* スマホ対応 */
@media screen and (max-width: 680px) {
  .p-archive__link {
    gap: 14px;
    padding: 14px 0;
  }
  .p-archive__thumb {
    width: 80px;
  }
  .p-archive__title {
    font-size: 14px;
  }
  .p-archive__excerpt {
    display: none;
  }
  .p-archive__pagination .page-numbers {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

/* =====================
  single: 投稿詳細ページ
===================== */
.p-single {
  position: relative;
  padding: clamp(40px, 5vw, 72px) 0 clamp(60px, 8vw, 120px);
}
.p-single__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5.55vw, 80px);
}
.p-single__article {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 56px) clamp(20px, 4vw, 60px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.p-single__header {
  text-align: center;
  border-bottom: 1px dashed #c8a87a;
  padding-bottom: clamp(20px, 2.5vw, 32px);
  margin-bottom: clamp(28px, 3.5vw, 48px);
}
.p-single__date {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 1.111vw, 16px);
  color: #be8948;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.p-single__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.222vw, 32px);
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}
.p-single__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.p-single__cat {
  display: inline-block;
  background: #fcaf17;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.p-single__cat:hover {
  opacity: 0.85;
  color: #fff;
}
.p-single__thumb {
  margin: 0 0 clamp(28px, 3.5vw, 48px);
  border-radius: 4px;
  overflow: hidden;
}
.p-single__thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.p-single__content {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.111vw, 16px);
  color: #333;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.p-single__content > * + * {
  margin-top: 1.2em;
}
.p-single__content h2,
.p-single__content h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #783b00;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.p-single__content h2 {
  font-size: clamp(18px, 1.667vw, 24px);
  border-left: 4px solid #fcaf17;
  padding-left: 12px;
  margin-top: 2em;
}
.p-single__content h3 {
  font-size: clamp(16px, 1.389vw, 20px);
  margin-top: 1.5em;
}
.p-single__content p {
  margin: 0;
}
.p-single__content a {
  color: #be8948;
  text-decoration: underline;
}
.p-single__content a:hover {
  opacity: 0.7;
}
.p-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.p-single__content ul,
.p-single__content ol {
  padding-left: 1.5em;
}
.p-single__content ul {
  list-style: disc;
}
.p-single__content ol {
  list-style: decimal;
}
.p-single__content li {
  list-style: inherit;
  margin: 0.3em 0;
}
.p-single__content blockquote {
  border-left: 3px solid #c8a87a;
  padding: 0.5em 1em;
  background: rgba(252, 175, 23, 0.05);
  color: #555;
  font-style: italic;
}

/* 前後ナビ */
.p-single__footer {
  margin-top: clamp(32px, 4vw, 56px);
  padding-top: clamp(24px, 3vw, 40px);
  border-top: 1px dashed #c8a87a;
}
.p-single__nav {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: clamp(12px, 2vw, 24px);
  align-items: center;
}
.p-single__nav-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  transition: opacity 0.25s ease;
  min-width: 0;
}
.p-single__nav-link:hover {
  opacity: 0.7;
  color: #333;
}
.p-single__nav-link--next {
  text-align: right;
}
.p-single__nav-label {
  color: #be8948;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.p-single__nav-title {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.p-single__nav-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fcaf17;
  color: #fff;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 10px 24px;
  border-radius: 999px;
  white-space: nowrap;
  transition: 0.25s ease;
}
.p-single__nav-back:hover {
  opacity: 1;
  background: #783b00;
  color: #fff;
}

/* スマホ対応 */
@media screen and (max-width: 680px) {
  .p-single__article {
    padding: 24px 18px;
  }
  .p-single__title {
    font-size: 18px;
  }
  .p-single__nav {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .p-single__nav-link--next {
    text-align: center;
  }
  .p-single__nav-back {
    order: -1;
  }
}
