@charset "UTF-8";
/* Reset (modern) */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  font-style: normal;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

a,
button {
  cursor: revert;
}

/* 画像は “はみ出さない” を基本に（伸ばさない） */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
  -moz-user-select: auto;
       user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
     -moz-appearance: revert;
          appearance: revert;
}

:where(pre) {
  all: revert;
  box-sizing: border-box;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

p {
  margin: 0;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Hiragino Kaku Gothic Std", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Std", "ヒラギノ角ゴ ProN", "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #252525;
  margin: 0;
}

a {
  color: #252525;
  text-decoration: none;
}

a:hover {
  opacity: 1;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

.u-serif {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

:lang(en) {
  font-family: "Noto Serif JP", serif;
}

/* drawer open: scroll lock */
html.is-menu-open,
html.is-menu-open body {
  overflow: hidden;
}

.l-container {
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .l-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ======================================
  l-header__sticky-reservation
  スマホ時のみ画面下部に固定表示
====================================== */
.l-header__sticky-reservation {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 1.2rem 1.6rem;
  padding-bottom: calc(1.2rem + env(safe-area-inset-bottom, 0));
  background: #c7a96a;
  box-shadow: 0 -0.2rem 1rem rgba(0, 0, 0, 0.1);
}
.l-header__sticky-reservation .c-button {
  width: 100%;
  max-width: none;
  margin: 0;
  height: 4.8rem;
  padding: 0 2rem;
  font-size: 1.6rem;
}
/* ======================================
  l-header
====================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #c4a76e;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding: 1.6rem 2.4rem;
  height: 10rem;
}

.l-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.l-header__logo img {
  display: block;
  height: 6.8rem;
  width: auto;
}

/* 右側 */
.l-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
}

.l-header .c-button {
  width: 32rem;
  max-width: none;
  margin: 0;
}

/* ======================================
  SP固定予約ボタン
====================================== */
.l-header__sticky-reservation {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  display: none;
}

.l-header__sticky-reservation.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* ======================================
  c-scroll
====================================== */
.c-scroll {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 200;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-decoration: none;
  --scroll-color: #252525;
}

.c-scroll.is-dark {
  --scroll-color: #252525;
}

.c-scroll__text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--scroll-color);
}

.c-scroll__line {
  position: relative;
  width: 0.2rem;
  height: 14rem;
  border-radius: 10rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.15);
}

.c-scroll.is-dark .c-scroll__line {
  background: #252525;
}

.c-scroll__line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -35%;
  width: 100%;
  height: 35%;
  border-radius: 10rem;
  background: var(--scroll-color);
  animation: c-scroll-line 1.6s ease-in-out infinite;
}

@keyframes c-scroll-line {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(260%);
    opacity: 0;
  }
}

/* ======================================
  Tablet
====================================== */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__inner {
    height: 8rem;
    padding: 1.2rem 2rem;
  }

  .l-header__logo img {
    height: 5.6rem;
  }

  .l-header__actions {
    gap: 1.6rem;
  }

  .c-scroll {
    right: 1.2rem;
    bottom: 1.6rem;
    gap: 1.2rem;
  }

  .c-scroll__line {
    height: 11rem;
  }

  .l-header__sticky-reservation {
    display: none;
  }
}

/* ======================================
  Mobile
====================================== */
@media screen and (max-width: 767px) {
  .l-header__inner {
    height: 6.4rem;
    padding: 1rem 1.6rem;
    justify-content: space-between;
  }

  .l-header__logo {
    /* display: none; */
  }

  .l-header .c-button--outline {
    display: none;
  }

  .l-header__actions {
    gap: 1.2rem;
  }

  .l-header .c-button {
    height: 3.6rem;
    padding: 0 1.2rem;
    font-size: 1.6rem;
  }

  .c-scroll {
    right: 0.8rem;
    bottom: 1.2rem;
    gap: 0.8rem;
  }

  .c-scroll__text {
    font-size: 1rem;
    letter-spacing: 0.14em;
  }

  .c-scroll__line {
    height: 8rem;
  }

  .l-header__sticky-reservation {
display: block;
width: 100%;
right: 1.2rem;
bottom: 0rem;
  }

  #main {
    padding-bottom: 8rem;
  }
}

.c-drawer__cta {
  margin-top: 2.4rem;
  display: grid;
  gap: 2rem;
}

/* ======================================
  l-footer
====================================== */
.l-footer {
  background: #ffffff;
  color: #252525;
  padding: 4rem 0 2rem;
}

.l-footer__inner {
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}

.l-footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  align-items: center;
}

.l-footer__info {
  display: inline-block;
  width: auto;
}

.l-footer__address {
  margin: 0 0 1.2rem;
  font-size: 1.6rem;
  line-height: 1.5;
}

.l-footer__tel {
  margin: 0 0 2rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.l-footer__tel-link {
  color: inherit;
  text-decoration: none;
}
.l-footer__tel-link:hover {
  opacity: 0.85;
}

.l-footer__hours {
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-footer__hours-item {
  font-size: 1.6rem;
  line-height: 1.5;
}

.l-footer__brand {
  display: inline-block;
  vertical-align: top;
  margin-left: 1.2rem;
}

.l-footer__logo {
  display: inline-block;
  width: 8rem;
  height: auto;
}

.l-footer__nav-area {
  width: 40%;
  flex: 0 0 auto;
  display: grid;
  gap: 1.6rem;
  justify-items: end;
}

.l-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
}

.l-footer__nav-link {
  color: inherit;
  text-decoration: none;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}
.l-footer__nav-link:hover {
  color: inherit;
}

.l-footer__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid #252525;
  color: #252525;
  text-decoration: none;
  letter-spacing: 0.12em;
  justify-self: center;
}
.l-footer__contact:hover {
  opacity: 0.85;
}

.l-footer__copy {
  margin: 5rem 0 0;
  font-size: 1rem;
  text-align: center;
  color: #252525;
}

/* SP */
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 3.6rem 0 2rem;
  }
  .l-footer__grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
  }
  /* ロゴは先頭に置きたいなら order で制御 */
  .l-footer__brand {
    order: 1;
    align-self: center;
  }
  .l-footer__info {
    order: 2;
    width: 100%;
  }
  .l-footer__nav-area {
    order: 3;
    justify-items: start;
    width: 100%;
  }
}
/* ======================================
  l-footer（info内：hours と brand を横並び）
====================================== */
.l-footer__info {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas: "address address" "tel     tel" "hours   brand";
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1.6rem;
}

.l-footer__address {
  grid-area: address;
}

.l-footer__tel {
  grid-area: tel;
}

.l-footer__hours {
  grid-area: hours;
}

.l-footer__brand {
  grid-area: brand;
}

/* hoursが画像の箇所（右のロゴ）と高さ揃うように */
.l-footer__hours {
  margin: 0;
  padding: 0;
  list-style: none;
  align-self: center; /* 中央寄せ */
}

.l-footer__brand {
  align-self: center; /* 中央寄せ */
  justify-self: start; /* 右寄せ */
}

.l-footer__logo {
  display: block;
  width: 9rem;
  height: auto;
}

/* SP：縦積み */
@media screen and (max-width: 767px) {
  .l-footer__info {
    grid-template-columns: 1fr;
    grid-template-areas: "address" "tel" "hours" "brand";
  }
  .l-footer__brand {
    justify-self: end;
  }
}
/* =============================
   Footer Nav Underline
============================= */
.l-footer__nav-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.l-footer__nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0%;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.l-footer__nav-link:hover::after {
  transform: scaleX(1);
}

/* ======================================
  c-button
====================================== */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 32rem;
  height: 6.8rem;
  padding: 0 3.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.c-button--arrow {
  gap: 1.2rem;
}
.c-button {
  /* =========================
     OUTLINE
  ========================= */
}
.c-button--outline {
  border: 0.1rem solid #252525;
  color: #252525;
  background: transparent;
  margin: 0 0 0 auto;
}
.c-button--outline:hover {
  background: #252525;
  color: #ffffff;
}
.c-button {
  /* =========================
     FILL
  ========================= */
}
.c-button--fill {
  color: #252525;
  background: #ffffff;
  border: 0.1rem solid #ffffff;
}
.c-button--fill:hover {
  background: #252525;
  border: 0.1rem solid #252525;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-button {
    height: 4.4rem;
    max-width: none;
  }
}

/* ======================================
  c-drawer
====================================== */
.c-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.c-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.c-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(36rem, 92vw);
  height: 100%;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: 0 0 2.4rem rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem;
  pointer-events: none;
}

.c-drawer.is-open {
  pointer-events: auto;
}

.c-drawer.is-open .c-drawer__overlay {
  opacity: 1;
  pointer-events: auto;
}

.c-drawer.is-open .c-drawer__panel {
  transform: translateX(0);
  pointer-events: auto;
}

.c-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #ffffff;
}

.c-drawer__title {
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  color: #252525;
}

.c-drawer__close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0.1rem solid #ffffff;
  background: #ffffff;
  width: 4.6rem;
  height: 4.6rem;
  cursor: pointer;
  color: #252525;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 6.2rem;
  line-height: 1.5;
}

.c-drawer__link:hover {
  color: #444444 !important;
}

/* nav */
.c-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}

.c-drawer__link {
  display: block;
  margin: 1.6rem 0;
  border-bottom: 0.1rem solid #ffffff;
  color: #252525;
  text-decoration: none;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}
.c-drawer__link:hover {
  opacity: 0.85;
}

/* motion */
@media (prefers-reduced-motion: reduce) {
  .c-drawer__overlay,
  .c-drawer__panel {
    transition: none;
  }
}
/* ======================================
  Header / Drawer Nav underline（gnavi風）
====================================== */
/* ドロワー内リンク */
.c-drawer__link {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.c-drawer__link::after {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 0%;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left top;
  transition: transform 0.3s ease;
}
.c-drawer__link:hover::after, .c-drawer__link.is-current::after {
  transform: scaleX(1);
}

/* ======================================
  c-hamburger
====================================== */
.c-hamburger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.c-hamburger:focus-visible {
  outline: 0.2rem solid #252525;
  outline-offset: 0.4rem;
  border-radius: 0.4rem;
}

.c-hamburger__icon {
  width: 4.6rem;
  height: 2.8rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.c-hamburger__line {
  display: block;
  height: 0.3rem;
  background: #252525;
  border-radius: 0.5rem;
}

.c-hamburger__label {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: #252525;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .c-hamburger__label {
    display: none;
  }
}
.c-section-title {
  margin: 0 0 6rem;
  width: 100%;
}
.c-section-title__text {
  position: relative;
  margin: 0;
  padding-bottom: 2rem;
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #252525;
}
.c-section-title__text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #252525;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    margin: 4rem 0 4rem;
  }
  .c-section-title__text {
    padding-bottom: 1.2rem;
    font-size: 2.8rem;
    letter-spacing: 0.06em;
    line-height: 1.5;
  }
  .c-section-title__text::after {
    height: 1px;
  }
}

/* =============================
  c-menu-jump
============================= */
/* スムーズスクロール（全体） */
html {
  scroll-behavior: smooth;
}

/* 固定ヘッダー分のズレ対策 */
#menu-food,
#menu-drink,
#menu-sale-rental {
  scroll-margin-top: calc(var(--header-h, 0px) + 2rem);
}

.c-menu-jump {
  margin: 3.2rem 0 4rem;
}

.c-menu-jump__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 2.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.c-menu-jump__item {
  min-width: 0;
}

.c-menu-jump__link {
  display: grid;
  place-items: center;
  height: 6rem;
  border: 0.1rem solid #252525;
  color: #252525;
  background: transparent;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-sizing: border-box; /* hoverで枠消してもズレにくく */
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* hover：背景黒・文字白・枠なし */
.c-menu-jump__link:hover {
  background: #252525;
  color: #ffffff;
  border-color: transparent; /* 枠なし（レイアウトシフト防止で none ではなく透明） */
}

.c-menu-jump__link:focus-visible {
  outline: 0.3rem solid rgba(37, 37, 37, 0.35);
  outline-offset: 0.2rem;
}

/* SP */
@media screen and (max-width: 767px) {
  .c-menu-jump {
    margin: 2.4rem 0 3.2rem;
  }
  .c-menu-jump__list {
    gap: 1.2rem;
    grid-template-columns: 1fr;
  }
  .c-menu-jump__link {
    height: 4.8rem;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
}
/* ======================================
  p-access
====================================== */
.p-access {
  padding: 10rem 0;
  background: #c7a96a;
}
@media screen and (max-width: 767px) {
  .p-access {
    padding: 6rem 0 7rem;
  }
}

.p-access__inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-access__inner {
    padding: 0 2rem;
  }
}

.p-access__head {
  margin-bottom: 3.6rem;
}

.p-access__title {
  margin: 0;
  font-size: 3.2rem;
  letter-spacing: 0.06em;
  font-weight: 800;
  color: #252525;
}

.p-access__rule {
  display: block;
  height: 0.1rem;
  margin-top: 1.2rem;
  background: rgba(17, 17, 17, 0.55);
}

/* layout */
.p-access__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 5rem;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .p-access__grid {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }
}

/* left */
.p-access__address {
  margin: 0 0 1.6rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: rgba(17, 17, 17, 0.78);
}

.p-access__postcode {
  font-weight: 700;
}

.p-access__address-main {
  font-weight: 700;
  color: rgba(17, 17, 17, 0.9);
}

.p-access__notes {
  list-style: none;
  margin: 0 0 2.2rem;
  padding: 0;
}

.p-access__note {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #252525;
}

.p-access__tel {
  margin: 0 0 2.6rem;
}

.p-access__tel-link {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #252525;
  text-decoration: none;
}
.p-access__tel-link:hover {
  opacity: 0.85;
}

/* bottom block (hours + logo) */
.p-access__bottom {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 2.6rem;
}

.p-access__hours {
  position: relative;
  padding-left: 1.6rem;
}
.p-access__hours::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 0.2rem;
  height: calc(100% - 0.4rem);
  background: rgba(17, 17, 17, 0.55);
}

.p-access__name {
  margin: 0 0 0.6rem;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #252525;
}

.p-access__time {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #252525;
}

.p-access__logo img {
  display: block;
  width: 7.2rem;
  height: auto;
}

/* button */
.p-access__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  height: 4.8rem;
  min-width: 22rem;
  padding: 0 2rem;
  background: #59695b;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.6rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.p-access__btn:hover {
  opacity: 0.9;
}
@media screen and (max-width: 767px) {
  .p-access__btn {
    width: 100%;
    min-width: auto;
  }
}

.p-access__btn-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 0.1rem solid rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* right map */
.p-access__iframe {
  display: block;
  width: 100%;
  height: 34rem;
  border: 0;
}
@media screen and (max-width: 767px) {
  .p-access__iframe {
    height: 24rem;
  }
}

.p-hero-top {
  position: relative;
  padding: 10rem 10rem 8rem;
  background: #c7a96a;
}
.p-hero-top__inner {
  position: relative;
  overflow: hidden;
}
.p-hero-top__visual img {
  width: 100%;
  height: 82vh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-hero-top__logo {
  position: absolute;
  top: 7rem;
  left: 7rem;
  z-index: 10;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.15);
		  display:none;
}
.p-hero-top__logo img {
  width: 10rem;
  height: auto;
  display: block;
	
}
.p-hero-top__content {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  z-index: 5;
  color: #ffffff;
  max-width: 100rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
}
.p-hero-top__text {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.p-hero-top__title {
  margin: 0 0 2rem;
  font-size: 16.8rem;
  font-weight: 700;
  line-height: 1;
}
.p-hero-top__catch {
  margin: 0 0 1rem;
  font-size: 4.4rem;
  padding-left: 3%;
}
.p-hero-top__sub {
  margin: 0 0 3rem;
  font-size: 3.2rem;
  padding-left: 3%;
}
.p-hero-top__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 4.6rem;
  background: #ffffff;
  color: #000000;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s;
  width: auto;
  height: 4.2rem;
}
.p-hero-top__btn:hover {
  opacity: 0.8;
}
.p-hero-top__menu {
  position: absolute;
  top: 3rem;
  right: 3rem;
  z-index: 10;
  text-align: center;
}
.p-hero-top__menu-line {
  display: block;
  width: 2.5rem;
  height: 0.2rem;
  background: #000000;
}
.p-hero-top__menu-line + .p-hero-top__menu-line {
  margin-top: 0.5rem;
}
.p-hero-top__menu-text {
  margin: 0.6rem 0 0;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: #000000;
}
.p-hero-top__scroll {
  position: absolute;
  left: 2rem;
  bottom: 6rem;
  writing-mode: vertical-rl;
  font-size: 1.6rem;
  letter-spacing: 0.3em;
}
.p-hero-top {
  /* 〜1247px（top） */
}
@media screen and (max-width: 1247px) {
  .p-hero-top {
    padding: 8rem 2rem 0;
    min-height: 100vh;
  }
  .p-hero-top__content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 90rem;
    bottom: 6rem;
  }
  .p-hero-top__text {
    align-items: center;
  }
  .p-hero-top__btn {
    width: 100%;
  }
  .p-hero-top__sub {
    margin: 0;
  }
}
.p-hero-top {
  /* SP */
}
@media screen and (max-width: 767px) {
  .p-hero-top {
    padding: 6rem 2rem 5rem;
  }
  .p-hero-top__visual img {
    height: 85vh;
  }
  .p-hero-top__title {
    font-size: 7.8rem;
  }
  .p-hero-top__logo {
    top: 2rem;
    left: 2rem;
    width: 8rem;
    height: 8rem;
	  display:none;
  }
  .p-hero-top__logo img {
    width: 6rem;
  }
  .p-hero-top__menu {
    top: 2rem;
    right: 2rem;
  }
  .p-hero-top__content {
    bottom: 3rem;
    width: calc(100% - 4rem);
    max-width: none;
    gap: 1.6rem;
  }
  .p-hero-top__catch {
    font-size: 2.2rem;
    margin: 0 0 0.6rem;
    text-align: center;
    padding-left: 0;
  }
  .p-hero-top__sub {
    font-size: 1.8rem;
    padding-left: 0;
  }
  .p-hero-top__btn {
    padding: 1.4rem 2rem;
    font-size: 1.6rem;
    height: 4.4rem;
  }
  .p-hero-top__scroll {
    display: none;
  }
}

/* ======================================
  p-info
====================================== */
.p-info {
  position: relative;
  padding: 15rem 0 10rem;
  background: #c7a96a;
}
.p-info__inner {
  position: relative;
  z-index: 1;
  max-width: 100rem;
  margin: 0 auto;
}
.p-info__head {
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
.p-info__title {
  margin: 0;
  font-size: 3.2rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #252525;
}
.p-info__rule {
  flex: 1;
  height: 0.1rem;
  background: rgba(17, 17, 17, 0.55);
}
.p-info__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-info {
  /* SP */
}
@media screen and (max-width: 767px) {
  .p-info {
    padding: 4rem 0 6rem;
  }
  .p-info__head {
    gap: 1.4rem;
    margin-bottom: 2rem;
  }
  .p-info__title {
    font-size: 2.6rem;
  }
  .p-info__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.p-info-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.p-info-card:hover {
  color: rgba(37, 37, 37, 0.75);
}
.p-info-card:hover .p-info-card__thumb {
  filter: brightness(0.95);
}
.p-info-card__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  background: #d9d9d9;
  transition: filter 0.3s ease;
}
.p-info-card__meta {
  display: flex;
  gap: 1.2rem;
  align-items: baseline;
  margin-top: 1.4rem;
}
.p-info-card__label {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.p-info-card__date {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}
.p-info-card__text {
  margin: 0.8rem 0 0;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Hiragino Kaku Gothic ", "Noto Sans JP", sans-serif;
}
.p-info-card {
  /* SP */
}
@media screen and (max-width: 767px) {
  .p-info-card__thumb {
    aspect-ratio: 16/9;
  }
}
.p-info-card {
  /* SP */
}
@media screen and (max-width: 767px) {
  .p-info-card__thumb {
    aspect-ratio: 16/9;
  }
}

/* ======================================
  p-insta
====================================== */
.p-insta {
  position: relative;
  background: #c7a96a;
}

.p-insta__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 45rem;
}

.p-insta__item {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.p-insta__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.p-insta__badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35rem;
  height: 35rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  color: #252525;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.18);
}
.p-insta__badge:hover {
  color: #252525;
  opacity: 0.9;
}

.p-insta__badge-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.p-insta__badge-text {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  color: rgba(17, 17, 17, 0.75);
}

/* Instagram icon (CSS) */
.p-insta__icon {
  position: relative;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.7rem;
  border: 0.2rem solid #111111;
  display: inline-block;
}
.p-insta__icon::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 0.2rem solid #111111;
  border-radius: 50%;
}
.p-insta__icon::after {
  content: "";
  position: absolute;
  right: 0.45rem;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  background: #111111;
  border-radius: 50%;
}

/* SP */
@media screen and (max-width: 767px) {
  .p-insta__badge-title {
    font-size: 2rem;
  }
  .p-insta__badge {
    height: auto;
  }
  .p-insta__grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .p-insta__item {
    height: auto;
    aspect-ratio: 16/10;
  }
  .p-insta__badge {
    width: 22rem;
    height: 22rem;
  }
  .p-insta__badge-text {
    font-size: 1.4rem;
  }
}
.p-insta__text span {
  display: inline;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .p-insta__text span {
    display: block;
    font-size: 1.4rem;
  }
}
/* ======================================
  p-intro
====================================== */
.p-intro {
  padding: 10rem 0;
  background: #c7a96a;
}
.p-intro__inner {
  max-width: 100rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 1rem;
  align-items: center;
}
.p-intro__title {
  margin: 0 0 2rem;
  font-size: clamp(2.6rem, 2.8vw, 3.2rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #252525;
}
.p-intro__lead {
  margin: 0 0 1.6rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #252525;
}
.p-intro__body {
  margin: 0 0 2.6rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #252525;
}
.p-intro {
  /* CTA（Buttonコンポーネント側の見た目は c-button--outline が持つ想定なので、
     ここは必要ならラッパー用に使う） */
}
.p-intro__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  height: 4.4rem;
  padding: 0 1.8rem;
  width: 30rem;
  border: 0.1rem solid #252525;
  color: #252525;
  text-decoration: none;
  letter-spacing: 0.12em;
  font-size: 1.6rem;
}
.p-intro__cta:hover {
  opacity: 0.88;
}
.p-intro__cta-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0.1rem solid #252525;
}
.p-intro {
  /* ======================================
    画像：コラージュ配置
  ====================================== */
}
.p-intro__media {
  position: relative;
}
.p-intro__grid {
  position: relative;
  height: 42rem;
}
.p-intro__img {
  position: absolute;
  overflow: hidden;
  background: #d9d9d9;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.18);
}
.p-intro__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-intro__img--main {
  left: 0;
  top: 7rem;
  width: 72%;
  height: 26rem;
  z-index: 1;
  transform: rotate(-2deg);
}
.p-intro__img--sub1 {
  right: 0;
  top: 0;
  width: 56%;
  height: 22rem;
  z-index: 2;
  transform: rotate(2deg);
}
.p-intro__img--sub2 {
  left: 22%;
  bottom: 0;
  width: 64%;
  height: 20rem;
  z-index: 3;
}
.p-intro__watermark {
  position: absolute;
  right: -10rem;
  bottom: -18rem;
  margin: 0;
  font-size: 8rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.08);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}
.p-intro {
  /* ==============================
    <=1100px (content)
  ============================== */
}
@media screen and (max-width: 1100px) {
  .p-intro {
    padding: 12rem 0;
    /* 改行（<br>）を消して1文にする */
  }
  .p-intro__title br {
    display: none;
  }
  .p-intro__inner {
    grid-template-columns: 1fr;
  }
  .p-intro__watermark {
    right: 0;
    bottom: -11rem;
    font-size: 6.8rem;
  }
  .p-intro {
    /* 画像サイズ調整は __img の中の modifier に当てる */
  }
  .p-intro__img--main {
    left: 0;
    top: 4rem;
    width: 50%;
    height: 30rem;
  }
  .p-intro__img--sub1 {
    width: 55%;
    height: 35rem;
    transform: rotate(1.5deg);
  }
  .p-intro__img--sub2 {
    top: 45%;
    left: 15%;
    width: 48%;
    height: 30rem;
  }
}
.p-intro {
  /* ==============================
    SP
  ============================== */
}
@media screen and (max-width: 767px) {
  .p-intro {
    padding: 6rem 0;
  }
  .p-intro__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .p-intro__grid {
    height: 34rem;
  }
  .p-intro__img--main {
    top: 6rem;
    width: 52%;
    height: 24rem;
    transform: rotate(-1.5deg);
  }
  .p-intro__img--sub1 {
    top: 0;
    width: 50%;
    height: 25rem;
    transform: rotate(1.5deg);
  }
  .p-intro__img--sub2 {
    left: 30%;
    width: 42%;
    height: 20rem;
  }
  .p-intro__watermark {
    right: -1rem;
    bottom: -8rem;
    font-size: 4.8rem;
  }
}

/* ======================================
  p-page-hero
====================================== */
.p-page-hero {
  position: relative;
  width: 100%;
  padding: 10rem 0;
  background: #c4a76e;
  color: #252525;
}
.p-page-hero__inner {
  max-width: 100%;
  margin: 0 0 0 auto;
  padding: 0;
}
.p-page-hero__frame {
  display: grid;
  grid-template-columns: 6fr 4fr;
  align-items: center;
}
.p-page-hero__image {
  position: relative;
  padding: 0.8rem;
  background: transparent;
  aspect-ratio: 745/300;
}
@supports not (aspect-ratio: 1) {
  .p-page-hero__image {
    height: auto;
    padding-bottom: 40.27%;
  }
}
.p-page-hero__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-page-hero__panel {
  background: #ffffff;
  padding: 3.2rem 4rem;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.18);
  margin-left: -30rem;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}
.p-page-hero__title {
  margin: 0;
  font-size: clamp(2.8rem, 5.6vw, 6.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: left;
}
.p-page-hero__subtitle {
  margin: 1.6rem 0 0;
  font-size: 2rem;
  line-height: 1.7;
  font-weight: 700;
  text-align: left;
}
.p-page-hero {
  /* ======================================
     Mobile
  ====================================== */
}
@media screen and (max-width: 767px) {
  .p-page-hero {
    padding: 4rem 0 0rem;
  }
  .p-page-hero__inner {
    padding: 0 var(--gutter);
  }
  .p-page-hero__frame {
    display: block;
  }
  .p-page-hero__image {
    padding: 0;
    width: 100%;
    aspect-ratio: 100/48;
    overflow: hidden;
  }
  .p-page-hero__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .p-page-hero__panel {
    width: 96%;
    margin: -5.4rem 0 0;
    padding: 2rem 1rem 2.4rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.16);
  }
  .p-page-hero__title {
    text-align: left;
    font-size: 3.2rem;
    letter-spacing: 0.06em;
    line-height: 1.35;
  }
  .p-page-hero__subtitle {
    text-align: left;
    margin-top: 1.2rem;
    font-size: 1.4rem;
    line-height: 1.7;
    font-weight: 600;
  }
}

/* ======================================
  p-price
====================================== */
.p-price {
  padding: 10rem 0rem;
  background: #c7a96a;
}
.p-price__inner {
  max-width: 100rem;
  margin: 0 auto;
}
.p-price__head {
  margin-bottom: 3rem;
}
.p-price__lead {
  margin: 1.2rem 0 0;
  font-size: 1.6rem;
  line-height: 1.5;
  color: rgba(17, 17, 17, 0.75);
  font-family: "Hiragino Kaku Gothic ", "Noto Sans JP", sans-serif;
}
.p-price__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-price__item {
  min-height: 26rem;
}
.p-price {
  /* SP */
}
@media screen and (max-width: 767px) {
  .p-price {
    padding: 6rem 0 7rem;
  }
  .p-price__grid {
    grid-template-columns: 1fr;
  }
  .p-price__item {
    min-height: 22rem;
  }
}

/* ======================================
  p-price-card
====================================== */
.p-price-card {
  position: relative;
  display: block;
  height: 100%;
  min-height: 35rem;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  /* 追加：ホバー全体の動き */
  transition: transform 0.2s ease;
}
.p-price-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.35s ease; /* 追加 */
}
.p-price-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.25s ease; /* 既にあるならOK */
}
.p-price-card {
  /* 追加：枠（hoverで出す） */
}
.p-price-card::after {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border: 0.1rem solid rgba(255, 255, 255, 0);
  transition: border-color 0.25s ease;
  pointer-events: none;
  z-index: 2;
}
.p-price-card__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.p-price-card__title {
  display: block;
  font-size: 3.2rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  font-weight: 700;
  transition: transform 0.25s ease; /* 追加 */
}
.p-price-card__subtitle {
  display: block;
  margin-top: 1rem;
  font-size: 2rem;
  line-height: 1.5;
  opacity: 0.95;
  transition: transform 0.25s ease, opacity 0.25s ease; /* 追加 */
}
.p-price-card {
  /* ✅ hoverを“分かる”ように */
}
@media (hover: hover) and (pointer: fine) {
  .p-price-card:hover {
    transform: translateY(-0.2rem);
  }
  .p-price-card:hover .p-price-card__overlay {
    background: rgba(0, 0, 0, 0.65); /* 暗くして主役感 */
  }
  .p-price-card:hover .p-price-card__bg {
    transform: scale(1.08); /* 画像ズーム */
  }
  .p-price-card:hover::after {
    border-color: rgba(255, 255, 255, 0.55); /* 枠を出す */
  }
  .p-price-card:hover .p-price-card__title {
    transform: translateY(-0.2rem);
  }
  .p-price-card:hover .p-price-card__subtitle {
    transform: translateY(0.2rem);
    opacity: 1;
  }
}
.p-price-card {
  /* SP */
}
@media screen and (max-width: 767px) {
  .p-price-card {
    min-height: 35rem;
  }
  .p-price-card__title {
    font-size: 3.4rem;
  }
}

/* ======================================
  p-schedule
====================================== */
.p-schedule {
  padding: 7rem 0 8rem;
  background: #c7a96a;
}
.p-schedule__inner {
  max-width: 100rem;
  margin: 0 auto;
}
.p-schedule__head {
  margin-bottom: 3rem;
}
.p-schedule__lead {
  margin: 1.2rem 0 0;
  font-size: 1.6rem;
  line-height: 1.5;
  color: 252525;
}
.p-schedule__frame {
  background: rgba(255, 255, 255, 0.08);
}
.p-schedule__iframe {
  display: block;
  width: 100%;
  height: 60rem;
  border: 0;
  background: #ffffff;
}
.p-schedule {
  /* SP */
}
@media screen and (max-width: 767px) {
  .p-schedule {
    padding: 6rem 0 7rem;
  }
  .p-schedule__frame {
    padding: 1.2rem;
  }
  .p-schedule__iframe {
    height: 56rem;
  }
}

/* ======================================
  c-reservation
====================================== */
.c-reservation {
  padding: 5rem 0;
  background: #c4a76e;
}
.c-reservation__inner {
  max-width: 96rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.c-reservation__header {
  text-align: center;
  margin-bottom: 3.2rem;
}
.c-reservation__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.c-reservation__lead {
  font-size: 2rem;
  color: #252525;
}

  /* =============================
    予約方法（カード2枚 + or）
  ============================= */

.c-reservation__methods {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 2.4rem;
  margin-bottom: 3.6rem;
}
.c-reservation__card {
  padding: 2.4rem 2rem 2.8rem;
  background: #ffffff;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.c-reservation__card-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.4rem;
  color: #252525;
}
.c-reservation__card-lead {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1.6rem;
  color: #252525;
}
.c-reservation__card-body {
  margin-bottom: 2rem;
}
.c-reservation__text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #252525;
}

  /* ✅ フォームのボタン2つ用（あなたの希望：常に縦） */

.c-reservation__buttons {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.2rem;
}
.c-reservation__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  width: 100%;
  padding: 1.2rem 1.6rem;
  border-radius: 999px;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.c-reservation__button--line {
  background: #00b900;
}
.c-reservation__button--form {
  background: #f7931e;
}
@media (hover: hover) and (pointer: fine) {
  .c-reservation__button:hover {
    opacity: 0.85;
  }
}
.c-reservation__or {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-reservation__or span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  background: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  color: #252525;
}

  /* =============================
    フロー
  ============================= */

.c-reservation__flow {
  padding: 2.4rem 2rem 2rem;
  background: #ffffff;
  margin-bottom: 2.4rem;
}
.c-reservation__flow-title {
  font-size: 2rem;
  font-weight: 700;
  color: #252525;
  text-align: center;
  margin-bottom: 1.6rem;
}
.c-reservation__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
}
.c-reservation__step {
  text-align: center;
  padding: 1.6rem 1.2rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 0.1rem solid #252525;
}
.c-reservation__step-label {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #252525;
  margin-bottom: 0.4rem;
}
.c-reservation__step-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #252525;
}
.c-reservation__note {
  font-size: 1.8rem;
  color: #252525;
  text-align: center;
}
.c-reservation__footer {
  margin-top: 2rem;
  padding: 1.2rem;
  background: #fff7e1;
  text-align: center;
}
.c-reservation__footer-text {
  font-size: 2.2rem;
  font-weight: 700;
  color: #8a6400;
}

  /* =============================
    tablet〜SP（確実に“以下”へ当てる）
    ※ 1024px以下で縦にする
  ============================= */
@media (max-width: 1024px) {
  .c-reservation {
    padding: 5rem 0;
  }
  .c-reservation__methods {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .c-reservation__or span {
    width: 5.2rem;
    height: 5.2rem;
    font-size: 1.6rem;
  }
  .c-reservation__card {
    padding: 2rem 1.6rem 2.4rem;
  }
  .c-reservation__steps {
    grid-template-columns: 1fr;
  }
  .c-reservation__footer-text {
    font-size: 1.8rem;
  }
}

  /* =============================
    mobile（さらに小さい端末だけボタン調整）
  ============================= */

@media (max-width: 480px) {
  .c-reservation__button {
    padding: 1.2rem 1rem;
    font-size: 1.8rem;
  }
}

/* ======================================
  p-facility-overview
  （FACILITY ONLY / SMART BBQ で流用可）
====================================== */
.p-facility-overview {
  background: #c4a76e;
  padding: 6rem 0 15rem;
}
.p-facility-overview__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
}

  /* ------------------------------
    見出し
  ------------------------------ */

.p-facility-overview__title {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 4rem;
  color: #252525;
}

  /* ------------------------------
    ブロック見出し（FOOD / DRINK / SALE...）
  ------------------------------ */

.p-facility-overview__block {
  margin-top: 6rem;
}
.p-facility-overview__block-title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #252525;
  padding-bottom: 1.2rem;
  border-bottom: 0.1rem solid rgba(37, 37, 37, 0.35);
  margin-bottom: 3rem;
}
.p-facility-overview__label-wrap {
  display: grid;
  gap: 0.6rem;
}
.p-facility-overview__sub {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #252525;
}
.p-facility-overview__subheading {
	font-size:2.2rem;
}

  /* ------------------------------
    料金（行）
  ------------------------------ */

.p-facility-overview__prices {
  margin-top: 1rem;
  margin-bottom: 10rem;
  display: grid;
  gap: 3rem;
}
.p-facility-overview__row {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
}
.p-facility-overview__label {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #252525;
}

  /* dl/dt/dd 方式 */

.p-facility-overview__price-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.p-facility-overview__price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10rem;
}
.p-facility-overview__price-item dt {
  font-size: 1.8rem;
  font-weight: 600;
  color: #252525;
  min-width: 7rem;
  text-align: right;
}
.p-facility-overview__price-item dd {
  font-size: 2.2rem;
  font-weight: 700;
  color: #252525;
  min-width: 6rem;
  text-align: right;
  white-space: nowrap;
}

  /* span 方式（将来用：HTML側で使える） */

.p-facility-overview__price-key {
  font-size: 1.8rem;
  font-weight: 600;
  color: #252525;
  min-width: 7rem;
  text-align: right;
  max-width: 70%;
}
.p-facility-overview__price-val {
  font-size: 2.2rem;
  font-weight: 700;
  color: #252525;
  min-width: 6rem;
  text-align: right;
  white-space: nowrap;
}

  /* “項目が長い”タイプ（左寄せ） */

.p-facility-overview__price-list--single .p-facility-overview__price-item dt {
  min-width: auto;
  text-align: left;
}
.p-facility-overview__price-list--single .p-facility-overview__price-key {
  min-width: auto;
  text-align: left;
}

  /* ------------------------------
    注意事項
  ------------------------------ */

.p-facility-overview__notes {
  margin-top: 6rem;
}
.p-facility-overview__notes-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  color: #252525;
}
.p-facility-overview__divider {
  border: none;
  height: 1px;
  background: rgba(0, 0, 0, 0.3);
  margin: 1rem 0 2rem;
}
.p-facility-overview__notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.2rem;
}
.p-facility-overview__notes-item {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #252525;
}

  /* ------------------------------
    右下の GLOW ロゴ丸
  ------------------------------ */

.p-facility-overview__logo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 12rem;
}
@media screen and (max-width: 1100px) {
  .p-facility-overview__logo {
    bottom: -13rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-facility-overview__logo {
    bottom: -10rem;
  }
}
.p-facility-overview__logo img {
  width: 100%;
  height: auto;
  display: block;
}

  /* ------------------------------
    SP
  ------------------------------ */

@media screen and (max-width: 767px) {
  .p-facility-overview {
    padding: 4rem 0 16rem;
  }
  .p-facility-overview__block-title {
    font-size: 2.2rem;
  }
  .p-facility-overview__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .p-facility-overview__price-list {
    width: 100%;
  }
  .p-facility-overview__price-item {
    gap: 1rem;
  }
  .p-facility-overview__price-item dt {
    min-width: auto;
    text-align: left;
  }
  .p-facility-overview__price-item dd {
    min-width: auto;
    text-align: right;
  }
  .p-facility-overview__price-key {
    min-width: auto;
    text-align: left;
  }
  .p-facility-overview__price-val {
    min-width: auto;
    text-align: right;
  }
  .p-facility-overview__logo {
    width: 13rem;
    right: 1rem;
    bottom: -13rem;
  }
}

/* アンカー遷移時にヘッダー分ずらす */
#menu-food,
#menu-drink,
#menu-sale-rental {
  scroll-margin-top: calc(var(--header-h, 0px) + 10rem);
}

/* ======================================
  p-facility-info
====================================== */
.p-facility-info {
  background: #c7a96a;
  color: #252525;
  position: relative;
  /* =============================
    intro
  ============================== */
}
.p-facility-info__intro {
  padding: 8rem 0 10rem;
  position: relative;
}
.p-facility-info__intro-inner {
  text-align: center;
}
.p-facility-info__lead {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.7;
  margin: 0 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-facility-info__lead {
    font-size: 2.8rem;
    text-align: left;
  }
}
.p-facility-info__desc {
  font-size: 1.8rem;
  line-height: 1.9;
  max-width: 78rem;
  margin: 0 auto 8rem;
  text-align: justify;
}
.p-facility-info__catch {
  font-size: clamp(4.2rem, 6vw, 7.4rem);
  letter-spacing: 0.08em;
  color: rgba(59, 18, 3, 0.163);
  font-family: "Times New Roman", serif;
  margin: 0 0 3.2rem;
  white-space: nowrap;
  position: absolute;
  top: 29rem;
  right: 0;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .p-facility-info__catch {
    top: 35rem;
  }
}
@media screen and (max-width: 767px) {
  .p-facility-info__catch {
    top: 40rem;
    text-align: end;
    white-space: normal;
  }
}

  /* =============================
    menu jump
    - MenuJump が nav直下に <a> を出す場合
    - nav の中に <ul><li><a> を出す場合
    どちらでも崩れないようにする
  ============================== */

.p-facility-info__nav {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.2rem;
  /* ul が存在する場合は nav 自体の grid は無効化して、ul に任せる */
}
.p-facility-info__nav:has(.p-facility-info__nav-list) {
  display: block;
}

  /* ul 形式（推奨：MenuJumpが list を出す） */

.p-facility-info__nav-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

  /* li を持つ場合の崩れ防止 */

.p-facility-info__nav-item {
  margin: 0;
  padding: 0;
}

  /* a が nav 直下で並ぶ場合のフォールバック */

.p-facility-info__nav > .p-facility-info__nav-btn {
  display: inline-flex;
}
.p-facility-info__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4.2rem;
  border: 0.1rem solid rgba(37, 37, 37, 0.35);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #252525;
  background: #ffffff;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-facility-info__nav-btn:hover {
    opacity: 0.75;
  }
}

  /* =============================
    section blocks
  ============================== */

.p-facility-info__section {
  padding: 7rem 0 9rem;
}
.p-facility-info__section-inner {
  position: relative;
}

  /* =============================
    head (title + ghost)
    見出しの背面に巨大labelを置くためのラッパー
  ============================== */

.p-facility-info__head {
  position: relative;
  margin: 0 0 3.2rem;
}
.p-facility-info__head.is-reverse .p-facility-info__ghost {
  left: auto;
  right: -2rem;
  text-align: end;
}
.p-facility-info {
  /* 見出し本体（前面） */
}
.p-facility-info__title {
  position: relative;
  z-index: 2;
  margin: 0;
  padding-bottom: 1.2rem;
  font-size: 3.8rem;
  line-height: 1.5;
  font-weight: 700;
  border-bottom: 0.1rem solid #252525;
}
.p-facility-info {
  /* 薄い巨大文字（背面） */
}
.p-facility-info__ghost {
  position: absolute;
  z-index: 1;
  left: -2rem;
  top: -7rem;
  font-size: clamp(10rem, 14vw, 16rem);
  letter-spacing: 0.12em;
  color: rgba(59, 18, 3, 0.163);
  font-family: "Times New Roman", serif;
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
}
.p-facility-info__content {
  position: relative;
  display: grid;
  grid-template-columns:.5fr 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 6rem;
}
.p-facility-info__content.is-reverse {
  grid-template-columns:.5fr 1fr;
}
.p-facility-info__content.is-reverse .p-facility-info__body {
  order: 1;
  width: 93%;
  margin: 0 auto;
}
.p-facility-info__content.is-reverse .p-facility-info__media {
  order: 2;
}
.p-facility-info__text {
  font-size: 1.6rem;
  margin-top: 1rem;
  line-height: 2;
}

.p-facility-info__media {
  position: relative;
  min-height: 30rem;
}
.p-facility-info__photo {
  margin: 0;
  position: absolute;
  background: #eee;
  box-shadow: 0 0.8rem 2.2rem rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.p-facility-info__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-facility-info__photo--top {
  top: 1rem;
  left: 0rem;
  width: 35rem;
  height: 20rem;
  z-index: 5;
}
.p-facility-info__photo--bottom {
  top: 12rem;
  right: 0;
  width: 35rem;
  height: 25rem;
}

  /* =============================
    SP
  ============================== */

@media screen and (max-width: 767px) {
  .p-facility-info__intro {
    padding: 6rem 0 8rem;
  }
  .p-facility-info__nav {
    max-width: 34rem;
  }
  .p-facility-info__nav:has(.p-facility-info__nav-list) {
    display: block;
  }
  .p-facility-info__nav {
    /* nav直下 a の場合（フォールバック） */
    display: grid;
    gap: 1.2rem;
  }
  .p-facility-info__nav-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .p-facility-info__section {
    padding: 6rem 0 7rem;
  }
  .p-facility-info__title {
    font-size: 2.6rem;
  }
  .p-facility-info__ghost {
    top: -2rem;
	  left:0;
    font-size: clamp(9.2rem, 18vw, 12rem);
    white-space: nowrap;
  }
  .p-facility-info__content, .p-facility-info__content.is-reverse {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    overflow: hidden;
  }
  .p-facility-info__media {
    min-height: 28rem;
  }
  .p-facility-info__photo {
    position: relative;
    box-shadow: 0 0.6rem 1.8rem rgba(0, 0, 0, 0.12);
  }
  .p-facility-info__photo--top, .p-facility-info__photo--bottom {
    top: auto;
    right: auto;
    width: 100%;
    height: 20rem;
  }
  .p-facility-info__photo--bottom {
    margin-top: 1.2rem;
  }
}

.p-cancellation-policy {
  padding: 10rem 0 12rem;
  background: #c4a76e;
  color: #252525;
  padding: 10rem 0 12rem;
}
.p-cancellation-policy__title-area {
  margin-bottom: 4rem;
}
.p-cancellation-policy__lead {
  font-size: 1.8rem;
  line-height: 2.1;
  margin-bottom: 6rem;
  margin-top: 3rem;
}
.p-cancellation-policy__note {
  display: inline-block;
  margin-top: 0.6rem;
}
.p-cancellation-policy__section {
  margin-bottom: 6rem;
}
.p-cancellation-policy__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.p-cancellation-policy__text {
  font-size: 1.6rem;
  line-height: 1.9;
  margin-bottom: 1.6rem;
}
.p-cancellation-policy__group {
  margin-bottom: 3rem;
}
.p-cancellation-policy__group-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.p-cancellation-policy__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-cancellation-policy__list li {
  font-size: 1.6rem;
  line-height: 1.9;
  padding-left: 1.6rem;
  position: relative;
}
.p-cancellation-policy__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.p-cancellation-policy__notes {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.p-cancellation-policy__notes li {
  font-size: 1.6rem;
  line-height: 1.8;
}

.p-cancellation-policy__tel {
  font-weight: 700;
  text-decoration: underline;
  color: inherit;
}
.p-cancellation-policy__tel:hover {
  opacity: 0.7;
}
.p-cancellation-policy__tel:focus-visible {
  outline: 0.2rem solid currentColor;
  outline-offset: 0.2rem;
}

.p-contact-form {
  padding: 7rem 0 10rem;
  background: #c4a76e;
}
.p-contact-form__inner {
  max-width:100rem;
}
.p-contact-form__intro {
  margin: 2.4rem auto 4rem;
  font-size: 1.6rem;
  line-height: 1.9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-form__intro {
    text-align: left;
  }
}
.p-contact-form__link {
  text-decoration: underline;
}
.p-contact-form__form {
  margin-top: 3rem;
}
.p-contact-form__fieldset {
  border: 0;
  padding: 0;
  margin: 1rem 0;
}
.p-contact-form__legend {
  font-size: 2rem;
  margin: 0 0 1.6rem;
}
.p-contact-form__row {
  margin: 0 0 2.2rem;
}
.p-contact-form__label {
  display: block;
  font-size: 1.6rem;
  margin: 0 0 0.8rem;
}
.p-contact-form__input, .p-contact-form__textarea {
  width: 100%;

  border-radius: 0;
  padding: 1.2rem 2rem;
/* 	text-align:right; */
  font-size: 1.6rem;
  line-height: 1.4;
  background: #fff;
}
.p-contact-form__textarea {
  resize: vertical;
  min-height: 18rem;
}
.p-contact-form__choices {
  display: grid;
  gap: 1.2rem;
	font-size: 1.8rem;
}
.p-contact-form__choice {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 1.6rem;
  line-height: 1.6;
}
.p-contact-form__choice input {
  margin-top: 0.3rem;
}
.p-contact-form__choice-note {
  display: block;
  font-size: 1.6rem;
  margin-top: 0.3rem;
}
.p-contact-form__grid {
  display: grid;
  gap: 2rem;
}
.p-contact-form__count {
  display: grid;
  gap: 0.8rem;
}
.p-contact-form__count-label {
  font-size: 1.6rem;
}
.p-contact-form__count-field {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.p-contact-form__input--num {
  max-width: 95%;
}
.p-contact-form__unit {
  font-size: 1.6rem;
}
.p-contact-form__note-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 0.1rem solid #252525;
}
.p-contact-form__note-title {
  font-size: 1.8rem;
  margin: 0 0 0.8rem;
}
.p-contact-form__note-text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0 0 1.6rem;
}
.p-contact-form__confirm {
  padding: 2rem 0;
	  font-size: 2rem;
/*   border-top: 0.1rem solid #252525; */
}
.p-contact-form__confirm:first-of-type {
	  font-size: 2rem;
  border-top: 0;
  padding-top: 0;
}
.p-contact-form__confirm-title {
  margin: 0 0 1rem;
	  line-height: 1;
}
.p-contact-form__confirm-text {
  font-size: 1.6rem;

  margin: 0 0 1.2rem;
}
.p-contact-form__list {
  margin: 0 0 1.2rem;
  padding-left: 1.6rem;
}
.p-contact-form__list li {
  list-style: disc;
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
  line-height: 1.7;
}
.p-contact-form__actions {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
.p-contact-form__submit {
  min-width: 22rem;
  min-height: 5.2rem;
  border: 0.1rem solid #222;
  background: #fff;
  color: #222;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.p-contact-form__submit:hover {
  background: #000;
  color: #fff;
}

.p-contact-form__people {
  display: grid;
  gap: 1.2rem;
}
.p-contact-form__people-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.p-contact-form__people-label {
  font-size: 1.8rem;
  line-height: 1.6;
}
.p-contact-form__people-field {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.p-contact-form__people-input {
  width: 7rem;
  height: 2.4rem;
  padding: 0 0.6rem;
  border: 1px solid #bfbfbf;
  border-radius: 2px;
  background: #fff;
  font-size: 1.8rem;
  text-align: right;
}
.p-contact-form__people-unit {
  font-size: 1.6rem;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-contact-form__people-row {
    -moz-column-gap: 1.2rem;
         column-gap: 1.2rem;
  }
  .p-contact-form__people-input {
    width: 6.4rem;
  }
}

.p-contact-form__note {
  margin-top: 3.2rem;
  padding: 2.4rem;
  background: #f5f5f5;
  border-radius: 4px;
}
.p-contact-form__note-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.p-contact-form__note-list {
  padding-left: 1.6rem;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.p-contact-form__note-list li {
  font-size: 1.6rem;
}

/* 赤強調 */
.is-accent {
  color: #e60012;
  font-weight: 700;
}
/* ======================================
  p-information
====================================== */
.p-information {
  padding: 8rem 0;
  background: #c7a96a;
}

/* タイトルまわり */
.p-information__header {
  margin-bottom: 4rem;
}

/* SectionTitleを使っているなら不要だが保険 */
.p-information__title {
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

/* 一覧 */
.p-information__list {
  list-style: none;
  margin: 0;
  padding: 0;
/*   border-top: 1px solid rgba(0, 0, 0, 0.12); */
}

.p-information__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.p-information__link {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1.6rem;
  padding: 2rem 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.p-information__link:hover {
  opacity: 0.6;
}

.p-information__date {
  font-size: 1.4rem;
/*   opacity: 0.6; */
  white-space: nowrap;
	    display: flex;
    align-items: center;
}

.p-information__text {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.6;
}

.p-information__empty {
  margin: 0;
  opacity: 0.7;
  padding: 2rem 0;
}

/* =============================
   MORE（下配置：下線が左→右）
============================= */
.p-information__more {
  position: relative;
  display: block;
  width: fit-content;
  margin: 6rem 0 6rem auto;

  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;

  min-width: 15rem;
  text-align: center;
  padding: 1.2rem 3.2rem;

  text-decoration: none;
  color: inherit;
}

/* 通常の薄い線（ベース） */
.p-information__more::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.3);
}

/* アニメーション用の線 */
.p-information__more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #252525;
  transition: width 0.4s ease;
}

/* hoverで左から右へ */
.p-information__more:hover::after {
  width: 100%;
}

/* =============================
   SP
============================= */
@media (max-width: 768px) {
  .p-information {
    padding: 5rem 0;
  }

  .p-information__link {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .p-information__more {
    margin-top: 4rem;
  }
}
.wpcf7-list-item {
	display:block;
}

.wpcf7 form .wpcf7-spinner {
  display: none !important;
  margin: 0 !important;
}

.time-note {
  display: block;     
  font-size: 1.2rem;    
/*   margin-top: 0.4rem; */
  opacity: 0.8;
}

/* =========================
  p-news (archive/home)
========================= */
.p-news {
  background: #c7a96a;

  &__head {
    padding: 8rem 0 4rem;
  }

  &__title {
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  &__line {
    display: block;
    height: 0.2rem;
    background: #111;
    margin-top: 1.5rem;
  }

  &__body {
    padding: 4rem 0 10rem;
  }

  &__grid {
    display: grid;
    gap: 4rem;
    grid-template-columns: repeat(3, 1fr);

    @include media("mobile") {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  }
}

/* card */
.p-news-card {
  &__link {
    display: block;
    text-decoration: none;
    color: #111;
  }

  &__thumb {
    position: relative;
  }

  &__img,
  &__dummy {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    background: #ddd;
  }

  /* 影っぽいズレ（画像の雰囲気） */
  &__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translate(1.2rem, 1.2rem);
    background: rgba(0, 0, 0, 0.25);
    z-index: -1;
  }

  &__meta {
    display: flex;
    justify-content: space-between;
    margin-top: 1.6rem;
    font-weight: 700;
  }

  &__heading {
    margin-top: 1.2rem;
    font-size: 2.0rem;
    font-weight: 800;
  }

  &__excerpt {
    margin-top: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
  }
}
/* =====================================
  INFORMATION single (p-news-single)
  画像のデザイン寄せ：余白大 / 中央寄せ / 下部ナビ / 右下ロゴ
===================================== */

/* ページ全体：縦の余白を確保 */
.p-news-single {
  background: #c4a76e;
  color: #111111;
  min-height: 100vh;
}

/* コンテンツ領域：上は広め、下はロゴ分も含めて広め */
.p-news-single__body {
  padding: 100px 0 140px;
}

/* タイトル（共通パーツ c-section-title を使っている想定） */
.p-news-single .c-section-title {
  margin: 0 0 48px;
}

/* サムネ：中央、大きめ、余白多め */
.p-news-single__thumb {
  width: min(720px, 100%);
  margin: 0 auto 56px;
}

.p-news-single__img,
.p-news-single__dummy {
  width: 100%;
  display: block;
  background: #d9d9d9;
  aspect-ratio: 16 / 9;
	object-fit: cover;
}

/* タイトル + 日付：左右に配置 */
.p-news-single__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin: 0 0 28px;
}

/* 記事タイトル（左） */
.p-news-single__heading {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* 日付（右） */
.p-news-single__date {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

/* 本文：横幅を抑えて、読みやすく */
.p-news-single__content {
  /* max-width: 760px; */
  line-height: 2;
  font-size: 16px;
  margin: 0 auto;
}

/* WP本文の余計なマージンを整える（必要最低限） */
.p-news-single__content > *:first-child {
  margin-top: 0;
}
.p-news-single__content > *:last-child {
  margin-bottom: 0;
}

/* 下部ナビ：左右に固定っぽく見せる */
.p-news-single__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-top: 48px;
  padding-top: 28px;
}

/* 矢印を丸で囲う */
.p-news-single__nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;
  border: 1px solid #111111;
  border-radius: 50%;

  color: #111111;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;

  transition: opacity 0.2s ease;
}

.p-news-single__nav a:hover {
  opacity: 0.7;
}

/* 左右の配置 */
.p-news-single__nav-prev,
.p-news-single__nav-next {
  width: 50%;
}
.p-news-single__nav-prev {
  display: flex;
  justify-content: flex-start;
}
.p-news-single__nav-next {
  display: flex;
  justify-content: flex-end;
}

/* 右下ロゴ（画像の位置に合わせる） */
.p-news-single__brand {
  position: fixed;
  right: 28px;
  bottom: 18px;
  z-index: 5;
  pointer-events: none;
}

.p-news-single__brand-text {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 12px;
}


/* SP調整 */
@media (max-width: 767px) {
  .p-news-single__body {
    padding: 56px 0 120px;
  }

  .p-news-single__thumb {
    width: 100%;
    margin-bottom: 40px;
  }

  .p-news-single__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .p-news-single__brand {
    right: 16px;
    bottom: 12px;
    transform: scale(0.95);
    transform-origin: right bottom;
  }

  .p-news-single::after {
    right: 16px;
    top: 72px;
    height: 90px;
  }
}
/* ======================================
  INFORMATION archive (home.php)
  /information/
====================================== */



.p-news__head {
  padding: 10rem 0 3rem;
}

.p-news__body {
  padding: 0rem 0 10rem;
}

/* タイトル直下の黒線（少し細く・余白調整） */
.p-news__line {
  display: block;
  width: 100%;
  height: 1px;
  background: #111;
  margin-top: 2.0rem;
}

.p-news__grid {
  display: block;
  margin-top: 4.0rem;
}

.p-news-card {
  border-bottom: 1px solid rgba(17, 17, 17, 0.15);
}

/* .p-news-card:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.15);
} */


.p-news-card__link {
  display: grid;
  grid-template-columns: 14rem 1fr;
  /* gap: 4.0rem; */
  align-items: center;
  padding: 2.2rem 0;
  text-decoration: none;
  color: inherit;
}


.p-news-card__thumb,
.p-news-card__heading,
.p-news-card__excerpt,
.p-news-card__cat {
  display: none;
}

.p-news-card__meta {
  display: contents; 
}

.p-news-card__date {
  grid-column: 1;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.p-news-card__meta::after {
  content: "";
}


.p-news-card__heading {
  display: block;
  grid-column: 2;
  margin: 0;

  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.p-news-card__link:hover {
  opacity: 0.75;
}

.p-news__pager {
  margin-top: 6.0rem;
  display: flex;
  justify-content: center;
}

.p-news__pager .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 4.4rem;
  height: 4.4rem;
  padding: 0 1.2rem;
  margin: 0 0.6rem;

  border: 1px solid rgba(17, 17, 17, 0.25);
  color: #111;
  text-decoration: none;
  font-weight: 700;
}

.p-news__pager .page-numbers.current {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* 「現在お知らせはありません」 */
.p-news__empty {
  margin-top: 6.0rem;
  opacity: 0.7;
}

/* =============================
  SP
============================= */
@media (max-width: 767px) {
  .p-news__head {
    padding: 7rem 0 2rem;
  }

  .p-news__body {
    padding: 2rem 0 8rem;
  }

  .p-news-card__link {
    grid-template-columns: 11rem 1fr;
    gap: 2.0rem;
    padding: 2.0rem 0;
  }

  .p-news-card__heading {
    font-size: 1.8rem;
  }
}
.c-drawer__close {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  outline: none;
}
* {
  -webkit-tap-highlight-color: transparent;
}
button {
  -webkit-appearance: none;
  appearance: none;
}
.l-footer__recaptcha {
  font-size: .8rem;
  line-height: 1.8;
  color: #252525;
  text-align: center;
}

.l-footer__recaptcha a {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .l-footer__recaptcha {
    font-size: .8rem;
    text-align: left;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}

.c-scroll.is-hide {
  opacity: 0;
  pointer-events: none;
}