@charset "UTF-8";
/* hardcore-reset.css */
/* 完全初期化：すべて自分でスタイルを書く前提 */
/* 1) すべての要素を初期化 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font: inherit;
  color: inherit;
  background: transparent;
}

/* 2) HTML / BODY */
html,
body {
  width: 100%;
  height: 100%;
  line-height: 1;
  font-size: 100%;
}

/* 3) 見出しもただのテキスト */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* 4) リスト完全無効化 */
ul,
ol {
  list-style: none;
}

/* 5) リンク完全無効化 */
a {
  text-decoration: none;
}

/* 6) 画像・メディア */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

/* 11) strong / em すら信用しない */
strong,
b {
  font-weight: inherit;
}

em,
i {
  font-style: inherit;
}

/* 12) hr */
hr {
  height: 0;
}

/* 13) details / summary */
summary {
  list-style: none;
}

/* 14) focus も一旦殺す（※自分で後で定義すること） */
:focus {
  outline: none;
}

/* =========================
   Base
========================= */
:root {
  --bg: #e9e5df;
  --text: #000000;
  --muted: rgba(31, 31, 31, 0.6);
  --line: rgba(31, 31, 31, 0.12);
  --card: rgba(255, 255, 255, 0.35);
}

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

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  color: var(--text);
  background: var(--bg);
  letter-spacing: 0.02em;
  opacity: 0;
}

img {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(1800px, 100% - 2rem);
  margin: 0 auto;
}

/* object-fit cover util */
.fitCover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =========================
   UI
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1.2rem;
  border: 1px solid var(--line);
  background: rgb(0, 0, 0);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease;
  color: #ffffff;
}
.btn:hover {
  background: rgb(30, 30, 30);
  color: #fff;
}
.btn--sm {
  height: 2.35rem;
  padding: 0 1rem;
  font-size: 0.9rem;
}
.btn--wide {
  width: min(320px, 100%);
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.txt {
  line-height: 2rem;
}

.sectionTitle {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0.06em;
}

.body {
  margin: 0.8rem 0 0;
  color: rgba(31, 31, 31, 0.78);
  line-height: 1.9;
  font-size: 1rem;
}

.sectionHeader {
  padding: 6rem 0;
}

/* =========================
   Header / Footer
========================= */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 10;
}
.siteHeader__inner {
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 0;
}
.siteHeader__nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.siteHeader__nav a {
  font-size: 0.85rem;
  color: rgb(0, 0, 0);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.brand__mark {
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.5);
}
.brand__text {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.brand__text img {
  width: 100%;
}

.siteFooter {
  padding: 6rem 0 3rem;
}
.siteFooter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.siteFooter__links {
  display: flex;
  gap: 1rem;
}
.siteFooter__links p {
  font-size: 0.6rem;
}
.siteFooter .copy {
  font-size: 0.8rem;
}

#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #e9e5df;
  z-index: 9999;
}

#loader {
  display: none;
  position: fixed;
  top: 43%;
  left: 43%;
  width: 200px;
  height: 200px;
  margin-top: -50px;
  margin-left: 0px;
  text-align: center;
  z-index: 99999;
}
#loader img {
  width: 100%;
}

/* =========================
   HERO
========================= */
.hero {
  padding: 0rem 0rem 0rem 0rem;
  margin-top: 50px;
  /* 縦組みっぽい雰囲気（厳密な縦書きが必要なら writing-mode に） */
}
.hero__media {
  position: relative;
  overflow: hidden;
  margin-top: 0rem;
  object-fit: cover;
  height: 70vh;
}
.hero .date {
  font-size: 2rem;
  text-align: right;
  margin-bottom: 1rem;
}
.hero .date span {
  font-size: 1rem;
}
.hero .hero_title {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  margin: 0;
  display: grid;
  z-index: 99;
  width: 20%;
}
.hero .hero__slider {
  --fade: 1000ms;
  --ease: cubic-bezier(.2, .7, .2, 1);
  position: relative;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  aspect-ratio: 16/9;
}
@media (max-width: 768px) {
  .hero .hero__slider {
    aspect-ratio: 9/16;
  }
}
.hero .hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity var(--fade) var(--ease);
}
.hero .hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 6s var(--ease);
  will-change: opacity, transform;
}
.hero .hero__slide.is-active {
  opacity: 1;
}
.hero .hero__slide.is-active img {
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .hero .slideshow {
    --fade-duration: 0ms;
  }
}

/* =========================
   INTRO
========================= */
.intro {
  padding: 0.5rem 0 2.5rem;
}
.intro__grid {
  display: grid;
  grid-template-columns: 350px 350px 1fr;
  gap: 0.5rem;
  align-items: start;
}
.intro__thumb {
  height: 60vh;
  overflow: hidden;
}
.intro__text {
  padding: 7rem;
}
.intro__text .txt {
  font-size: 0.85rem;
}

/* =========================
   RESTAURANTS
========================= */
.restaurants {
  padding-bottom: 2.5rem;
}

.restaurant {
  margin-bottom: 6rem;
}
.restaurant__info {
  display: grid;
  grid-template-columns: 85% 1fr;
  gap: 0.9rem;
  margin-bottom: 1rem;
  align-items: end;
}
.restaurant__info .btn {
  font-size: 0.8rem;
  height: 2rem;
  padding: 0 1rem;
}
.restaurant__name {
  margin-top: 1rem;
  font-size: 1.5rem;
}
.restaurant__desc {
  margin: 0.7rem 0 0;
  line-height: 1.9;
  font-size: 0.98rem;
}
.restaurant .border {
  width: 15px;
  height: 2px;
  background: #000;
  display: block;
}
.restaurant__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.restaurant__list li {
  display: grid;
  grid-template-columns: 90px auto 1fr;
  gap: 0.9rem;
  padding: 0rem 0;
  font-size: 0.7rem;
  line-height: 1rem;
}
.restaurant__list li span {
  font-size: 0.7rem;
}
.restaurant__list li span.area {
  background: #000;
  color: #fff;
  padding: 0.2rem;
  text-align: center;
  margin-bottom: 1rem;
}
.restaurant__list li a {
  text-decoration: underline;
}
.restaurant .list2 li {
  padding: 8px 0;
  line-height: 1.5rem;
  font-size: 0.85rem;
}
.restaurant .list2 span {
  font-size: 0.7rem;
}
.restaurant__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.restaurant__shot {
  margin: 0;
  height: auto;
  overflow: hidden;
}

/* =========================
   PEOPLE
========================= */
.people {
  padding-bottom: 2.5rem;
}

.people__list {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem 0 0;
}

.person {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 1.25rem;
  align-items: stretch;
}
.person__media {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.person__body {
  display: grid;
  grid-template-columns: 60% 1fr;
}
.person__name {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-bottom: 1rem;
}
.person__desc {
  margin: 0.4rem 0 1.1rem;
  font-size: 0.85rem;
  line-height: 1.2rem;
}
.person__desc a {
  text-decoration: underline;
}

.textBlock {
  margin: 2rem 0;
}
.textBlock__large {
  font-size: 1rem;
  font-weight: 400;
}
.textBlock__small {
  font-size: 0.85rem;
  line-height: 1.5rem;
}

.width50 {
  width: 50%;
}

.page .hero .pan {
  margin-bottom: 1rem;
  font-size: 0.8rem;
  display: block;
}
.page .meta_info {
  display: inline-block;
  grid-template-columns: 1fr;
}
.page .gridShots {
  padding: 5% 1rem;
}
.page .gridShots__grid {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0rem;
}
.page .shot {
  margin: 0;
  overflow: hidden;
}
.page .shot img {
  height: 100%;
}
.page .textArea {
  padding: 0 1rem;
}
.page .textArea .textBlock {
  margin-top: 5rem;
}
.page .textArea h3 {
  font-size: 2rem;
  font-weight: 600;
}
.page .textArea .textBlock__large {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.page .bottomArea {
  padding: 5rem 1rem 0;
}
.page .back {
  padding: 5rem 1rem;
}
.page .back a {
  display: block;
  text-align: center;
  text-decoration: underline;
}

/* =========================
 右下追従バナー（SCSS）
 ========================= */
.floating-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  padding: 12px 16px;
  background: #860000;
  color: #fff;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.floating-banner__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.floating-banner__label {
  font-size: 0.8rem;
}
.floating-banner__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.floating-banner__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.floating-banner__account {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (hover: hover) {
  .floating-banner:hover {
    transform: translateY(-2px);
  }
}
@media (max-width: 480px) {
  .floating-banner {
    right: 12px;
    bottom: 12px;
    padding: 10px 14px;
  }
  .floating-banner__label {
    font-size: 0.75rem;
  }
  .floating-banner__icon {
    width: 16px;
    height: 16px;
  }
  .floating-banner__account {
    font-size: 0.8rem;
  }
}

/* =========================
   Responsive
========================= */
@media (max-width: 980px) {
  .siteHeader .brand {
    width: 100%;
  }
  .siteHeader__nav {
    display: grid;
    align-items: center;
    gap: 1rem;
    text-align: right;
    width: 60%;
  }
  .siteHeader__nav a {
    font-size: 0.75rem;
  }
  .siteHeader .brand__text {
    width: 80%;
  }
  .siteHeader .brand__text img {
    width: 100%;
  }
  .hero {
    margin-top: 4rem;
  }
  .hero__media {
    height: 70vh;
  }
  .hero .hero_title {
    width: 30%;
    right: 2rem;
    bottom: 6rem;
  }
  .hero .date {
    font-size: 1.2rem;
    text-align: right;
    margin-bottom: 1rem;
  }
  .hero .date span {
    font-size: 0.85rem;
  }
  .intro__grid {
    grid-template-columns: 1fr 1fr;
  }
  .intro__text {
    grid-column: 1/-1;
    padding: 7rem 3rem;
  }
  .intro__thumb {
    height: 30vh;
  }
  .restaurant {
    grid-template-columns: 1fr;
  }
  .restaurant__info {
    display: grid;
    grid-template-columns: 1fr;
  }
  .restaurant__info .btn {
    font-size: 0.7rem;
    height: 2rem;
    padding: 0 1rem;
    width: 40%;
    margin-left: auto;
    margin-right: 0;
  }
  .restaurant__media {
    grid-template-columns: 1fr 1fr;
  }
  .restaurant .list2 li {
    grid-template-columns: 1fr;
    padding: 8px 0;
    line-height: 1.2rem;
    font-size: 0.85rem;
  }
  .restaurant .list2 span {
    font-size: 0.7rem;
  }
  .people__list {
    padding: 1.5rem 0 0;
    gap: 4rem;
  }
  .person {
    grid-template-columns: 1fr;
  }
  .person__media {
    height: 260px;
  }
  .person__body {
    display: grid;
    grid-template-columns: 1fr;
  }
  .person__name {
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    font-weight: 400;
  }
  .siteHeader__nav {
    gap: 0.2rem;
  }
  .width50 {
    width: 100%;
  }
  .siteFooter .copy {
    font-size: 0.6rem;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(1100px, 100% - 2rem);
  }
  .restaurant__media {
    grid-template-columns: 1fr;
  }
  .restaurant__shot {
    height: 210px;
  }
  .hero__title {
    right: 1rem;
    top: 1rem;
  }
}