@charset "UTF-8";
/* ==========================================================================
   珈琲と焼き菓子 hibi — サンプルLP
   スマートフォン最優先（375px基準）／PC最大幅 1160px
   ========================================================================== */

:root {
  --cream: #F3EDE2;
  --cream-deep: #EAE1D2;
  --paper: #FBF8F2;
  --brown: #3B2E27;
  --coffee: #6A4B38;
  --moss: #53634B;
  --orange: #B86F43;
  --white: #FFFFFF;
  --line: #CFC3B4;
  --muted: #6B5A4D;

  --serif: "Zen Old Mincho", "Yu Mincho", "YuMincho", serif;
  --sans: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  --en: "Cormorant Garamond", "Times New Roman", serif;
  --mono: "Roboto Mono", "IBM Plex Mono", ui-monospace, monospace;

  --head-h: 60px;
  --spbar-h: 74px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
  letter-spacing: .02em;
  overflow-x: hidden;
  padding-bottom: calc(var(--spbar-h) + env(safe-area-inset-bottom, 0px));
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }
h1, h2, h3, p, figure { margin: 0; }
b { font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

.skiplink {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brown); color: #fff; padding: 12px 18px;
}
.skiplink:focus { left: 8px; top: 8px; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* ---------- 共通レイアウト ---------- */
.wrap { width: min(100% - 40px, 1160px); margin-inline: auto; }

.en-head {
  font-family: var(--en);
  font-size: 15px;
  letter-spacing: .22em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.en-head::after {
  content: "";
  flex: 0 0 42px;
  height: 1px;
  background: var(--line);
}
.sec-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.65;
  letter-spacing: .04em;
  color: var(--brown);
}
.sec-head { margin-bottom: 34px; }
.sec-head--center { text-align: center; }
.sec-head--center .en-head { justify-content: center; }
.sec-head--center .en-head::before {
  content: ""; flex: 0 0 42px; height: 1px; background: var(--line);
}

section > .wrap { padding-block: 72px; }

/* ---------- ボタン ---------- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  padding: 12px 22px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn--main {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 0 rgba(59, 46, 39, .18);
}
.btn--main:hover { background: #A66038; }
.btn--sub {
  background: var(--white);
  color: var(--coffee);
  border: 1px solid var(--line);
}
.btn--sub:hover { background: #F6F1E8; }
.btn--line {
  display: inline-flex;
  background: transparent;
  color: var(--brown);
  border: 1px solid var(--brown);
  min-width: 260px;
}
.btn--line:hover { background: var(--brown); color: var(--cream); }

/* ---------- ヘッダー ---------- */
.head {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(243, 237, 226, .95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.head__inner {
  width: min(100% - 32px, 1160px);
  margin-inline: auto;
  min-height: var(--head-h);
  display: flex;
  align-items: center;
  gap: 16px;
}
.head__brand { display: flex; align-items: baseline; gap: 8px; margin-right: auto; }
.head__brand-en {
  font-family: var(--en);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1;
}
.head__brand-sub {
  font-family: var(--en);
  font-size: 14px;
  letter-spacing: .14em;
  color: var(--muted);
  line-height: 1;
}
.gnav { display: none; }
.head__actions { display: none; }

.burger {
  width: 46px; height: 46px;
  display: grid; place-content: center; gap: 6px;
  background: transparent; border: 1px solid var(--line); border-radius: 3px;
  cursor: pointer; padding: 0;
}
.burger span {
  display: block; width: 22px; height: 1.5px; background: var(--brown);
  transition: transform .25s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.drawer {
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.drawer.is-open { max-height: 90vh; overflow-y: auto; }
.drawer__list { padding: 6px 20px 4px; }
.drawer__list li + li { border-top: 1px solid var(--cream-deep); }
.drawer__list a {
  display: block;
  padding: 15px 2px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
.drawer__en {
  display: block;
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1.4;
}
.drawer__cta { display: grid; gap: 10px; padding: 14px 20px 24px; }

/* ---------- 1. ファーストビュー ---------- */
.hero { position: relative; background: var(--brown); }
.hero__img {
  width: 100%;
  height: 68vh;
  min-height: 380px;
  object-fit: cover;
  opacity: .92;
}
.hero__wrap {
  width: min(100% - 32px, 1160px);
  margin-inline: auto;
  position: relative;
  margin-top: -80px;
  padding-bottom: 8px;
}
.hero__box {
  background: rgba(243, 237, 226, .95);
  border: 1px solid rgba(207, 195, 180, .8);
  padding: 30px 22px 28px;
}
.hero__en {
  font-family: var(--en);
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--coffee);
  margin-bottom: 14px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 27px;
  line-height: 1.6;
  letter-spacing: .03em;
  margin-bottom: 18px;
}
.hero__lead { font-size: 16px; line-height: 1.95; color: #4A3A31; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  margin: 20px 0 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 16px;
  font-family: var(--mono);
  color: var(--coffee);
}
.hero__facts li { display: flex; align-items: center; gap: 8px; }
.hero__facts li::before { content: ""; width: 5px; height: 5px; background: var(--moss); border-radius: 50%; }
.hero__cta { display: grid; gap: 10px; }
.hero__note { margin-top: 16px; font-size: 15px; color: var(--muted); line-height: 1.8; }

/* ---------- 2. 営業情報帯 ---------- */
.today { background: var(--coffee); color: #F7F1E7; }
.today__inner {
  width: min(100% - 40px, 1160px);
  margin-inline: auto;
  padding-block: 22px;
}
.today__label {
  font-family: var(--en);
  font-size: 16px;
  letter-spacing: .24em;
  color: #E7C9A9;
  font-weight: 500;
  margin-bottom: 12px;
}
.today__list { display: grid; gap: 8px; }
.today__item { display: flex; align-items: baseline; gap: 12px; }
.today__item dt {
  font-size: 14px;
  flex: 0 0 auto;
  color: #E3D6C4;
  border-right: 1px solid rgba(247, 241, 231, .3);
  padding-right: 12px;
  min-width: 108px;
}
.today__item dd {
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .02em;
}
.today__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 700;
  color: #FFF;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
  padding-bottom: 3px;
}
.today__link::after { content: "↗"; font-size: 13px; }
.today__link:hover { border-bottom-color: #fff; }

/* ---------- 3. コンセプト ---------- */
.about { background: var(--cream); }
.about__text p { margin-top: 18px; }
.about__text p:first-of-type { margin-top: 24px; }
.about__media { margin-top: 40px; display: grid; gap: 16px; }
.about__fig img { width: 100%; }
.about__fig--main img { aspect-ratio: 4 / 3; object-fit: cover; }
.about__fig--sub { display: grid; grid-template-columns: 132px 1fr; gap: 14px; align-items: center; }
.about__fig--sub img { aspect-ratio: 1 / 1; object-fit: cover; }
.about__fig--sub figcaption {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

/* ---------- 4. おすすめ3品 ---------- */
.fav { background: var(--paper); border-top: 1px solid var(--cream-deep); }
.fav__list { display: grid; gap: 46px; }
.fav__fig img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.fav__body { padding-top: 18px; }
.fav__num {
  font-family: var(--en);
  font-size: 30px;
  line-height: 1;
  color: var(--orange);
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.fav__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.fav__price {
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 500;
  color: var(--coffee);
}
.fav__desc { font-size: 16px; }
.fav__pair {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--moss);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.fav__pair-label {
  font-size: 13px;
  letter-spacing: .08em;
  background: #E6EADF;
  color: var(--moss);
  padding: 3px 10px;
  border-radius: 2px;
}
.fav__more { margin-top: 44px; text-align: center; }

/* ---------- 5. hibiの3つのこと ---------- */
.three { background: var(--cream); }
.three__grid { display: grid; gap: 40px; }
.three__item { position: relative; }
.three__num {
  font-family: var(--en);
  font-size: 46px;
  line-height: 1;
  color: var(--line);
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.three__fig img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.three__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin: 18px 0 8px;
  letter-spacing: .03em;
}
.three__desc { font-size: 16px; }

/* ---------- 6. メニュー ---------- */
.menu { background: var(--paper); border-top: 1px solid var(--cream-deep); }
.menu__book {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 20px 28px;
}
.mgroup { padding-block: 28px; border-bottom: 1px dashed var(--line); }
.mgroup:last-of-type { border-bottom: 0; }
.mgroup__fig { margin-bottom: 18px; }
.mgroup__fig img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.mgroup__title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: .08em;
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}
.mgroup__en {
  font-family: var(--en);
  font-size: 14px;
  letter-spacing: .16em;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 500;
}
.mlist { display: grid; gap: 12px; }
.mrow { display: flex; align-items: baseline; gap: 6px; }
.mrow__name { font-size: 16px; line-height: 1.7; }
.mrow__note {
  display: block;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .06em;
  line-height: 1.6;
}
.mrow__dots {
  flex: 1 1 auto;
  min-width: 20px;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
}
.mrow__price {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--brown);
  white-space: nowrap;
}

.mset {
  margin-top: 26px;
  background: #F4F1E8;
  border: 1px solid var(--line);
  padding: 22px 18px;
}
.mset__title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.mset__desc { font-size: 16px; }
.mset__figs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.mset__fig img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

.menu__note { margin-top: 20px; font-size: 15px; color: var(--muted); }

/* ---------- 7. 過ごし方 ---------- */
.moment { background: var(--cream); }
.moment__list { display: grid; gap: 26px; }
.moment__item {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.moment__item:last-child { border-bottom: 0; padding-bottom: 0; }
.moment__fig img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.moment__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.moment__num {
  font-family: var(--en);
  font-size: 15px;
  width: 26px; height: 26px;
  flex: 0 0 26px;
  display: grid; place-content: center;
  background: var(--moss);
  color: #fff;
  border-radius: 50%;
  line-height: 1;
  padding-top: 1px;
}
.moment__body p { font-size: 16px; line-height: 1.85; }

/* ---------- 8. ギャラリー ---------- */
.gallery { background: var(--paper); border-top: 1px solid var(--cream-deep); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.g { overflow: hidden; }
.g img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.gallery__cta { margin-top: 32px; text-align: center; }

/* ---------- 9. 店主の話 ---------- */
.owner { background: var(--cream); }
.owner__fig img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.owner__body { margin-top: 30px; }
.owner__body p { margin-top: 18px; }
.owner__body .sec-title { margin-bottom: 6px; }
.owner__sign {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: .1em;
  margin-top: 24px !important;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

/* ---------- 10. はじめての方へ ---------- */
.first { background: var(--paper); border-top: 1px solid var(--cream-deep); }
.first__list { border-top: 1px solid var(--line); }
.first__row { padding: 22px 0; border-bottom: 1px solid var(--line); }
.first__q {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 6px;
  display: flex;
  gap: 10px;
}
.first__q::before {
  content: "―";
  color: var(--orange);
  flex: 0 0 auto;
}
.first__a { font-size: 16px; padding-left: 24px; }

/* ---------- 11. 店舗情報 ---------- */
.info { background: var(--cream); }
.info__dl { border-top: 1px solid var(--line); }
.info__row { padding: 16px 0; border-bottom: 1px solid var(--line); }
.info__row dt {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--coffee);
  margin-bottom: 4px;
}
.info__row dd { font-size: 16px; line-height: 1.85; }
.info__row dd small { font-size: 14px; color: var(--muted); }

.info__map { margin-top: 34px; }
.map { background: var(--white); border: 1px solid var(--line); padding: 10px 10px 4px; }
.map__svg { width: 100%; height: auto; display: block; }
.map__cap {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  padding: 12px 4px 10px;
}
.info__map .btn { margin-top: 16px; }

/* ---------- 12. 利用時のお願い ---------- */
.ask { background: var(--paper); border-top: 1px solid var(--cream-deep); }
.ask__paper {
  background: #F4F1E8;
  border: 1px solid var(--line);
  padding: 28px 20px;
}
.ask__title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: .05em;
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.ask__list { display: grid; gap: 12px; margin-top: 18px; }
.ask__list li {
  font-size: 16px;
  line-height: 1.85;
  display: flex;
  gap: 10px;
}
.ask__list li::before {
  content: "";
  flex: 0 0 6px;
  width: 6px; height: 6px;
  margin-top: 13px;
  background: var(--moss);
  border-radius: 50%;
}

/* ---------- 13. 最終CTA ---------- */
.last { position: relative; background: var(--brown); }
.last__img { width: 100%; height: 300px; object-fit: cover; opacity: .7; }
.last__wrap {
  width: min(100% - 32px, 1160px);
  margin-inline: auto;
  position: relative;
  margin-top: -70px;
  padding-bottom: 56px;
}
.last__box {
  background: rgba(243, 237, 226, .96);
  border: 1px solid rgba(207, 195, 180, .9);
  padding: 30px 22px;
}
.last__title {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.last__lead { font-size: 16px; margin-bottom: 24px; }
.last__cta { display: grid; gap: 10px; }
.last__facts {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--coffee);
}

/* ---------- フッター ---------- */
.foot { background: var(--brown); color: #E9E0D2; }
.foot__inner { padding-block: 40px 34px; }
.foot__brand {
  font-family: var(--en);
  font-size: 26px;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.foot__brand span { font-size: 15px; letter-spacing: .16em; color: #C6B7A4; }
.foot__disc { font-size: 15px; line-height: 1.9; color: #D6C9B9; }
.foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 26px 0 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(207, 195, 180, .3);
}
.foot__nav a {
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid rgba(207, 195, 180, .5);
  padding-bottom: 2px;
}
.foot__nav a:hover { border-bottom-color: #fff; }
.foot__copy {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .08em;
  color: #B7A794;
}

/* ---------- スマホ固定CTA ---------- */
.spbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 8px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
  background: rgba(251, 248, 242, .96);
  border-top: 1px solid var(--line);
  transition: transform .3s ease, opacity .3s ease;
}
.spbar.is-hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }
.spbar__btn {
  min-height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}
.spbar__en {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: .85;
}
.spbar__btn--sub { background: var(--white); color: var(--coffee); border: 1px solid var(--line); }
.spbar__btn--main { background: var(--orange); color: var(--white); }

/* ---------- フェードイン（控えめ） ---------- */
.fade { opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; }
.fade.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade { opacity: 1; transform: none; }
}

/* ==========================================================================
   タブレット以上
   ========================================================================== */
@media (min-width: 700px) {
  .sec-title { font-size: 29px; }
  section > .wrap { padding-block: 92px; }

  .hero__img { height: 74vh; }
  .hero__box { padding: 40px 40px 36px; max-width: 640px; }
  .hero__title { font-size: 38px; }
  .hero__cta { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .today__inner { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 28px; padding-block: 20px; }
  .today__label { margin-bottom: 0; }
  .today__list { display: flex; flex-wrap: wrap; gap: 10px 26px; }
  .today__item dt { min-width: auto; }
  .today__link { margin-top: 0; margin-left: auto; }

  .about__media { grid-template-columns: 1.35fr 1fr; align-items: end; }
  .about__fig--sub { grid-template-columns: 1fr; }
  .about__fig--sub img { aspect-ratio: 4 / 3; }

  .fav__item { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
  .fav__item:nth-child(even) .fav__fig { order: 2; }
  .fav__body { padding-top: 0; }

  .three__grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }

  .menu__book { padding: 12px 40px 40px; }
  .mgroup { display: grid; grid-template-columns: 1fr 1.25fr; gap: 34px; align-items: center; padding-block: 34px; }
  .mgroup--rev .mgroup__fig { order: 2; }
  .mgroup__fig { margin-bottom: 0; }
  .mgroup__fig img { aspect-ratio: 4 / 3; }
  .mset { display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; align-items: center; padding: 28px; }
  .mset__figs { margin-top: 0; }

  .moment__list { grid-template-columns: repeat(2, 1fr); gap: 28px 34px; }
  .moment__item { grid-template-columns: 120px 1fr; border-bottom: 1px solid var(--line); }
  .moment__item:last-child { border-bottom: 1px solid var(--line); padding-bottom: 26px; }

  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    grid-auto-rows: calc((min(100vw - 40px, 1160px) - 30px) / 4);
  }
  .g img { height: 100%; aspect-ratio: auto; }
  .g--tall { grid-row: span 2; }
  .g--wide { grid-column: span 2; }

  .owner__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: center; }
  .owner__body { margin-top: 0; }

  .first__row { display: grid; grid-template-columns: 340px 1fr; gap: 20px; align-items: start; }
  .first__q { margin-bottom: 0; }
  .first__a { padding-left: 0; }

  .info__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
  .info__map { margin-top: 0; }
  .info__row { display: grid; grid-template-columns: 130px 1fr; gap: 16px; }
  .info__row dt { margin-bottom: 0; }

  .ask__paper { padding: 38px 40px; }
  .ask__list { grid-template-columns: repeat(2, 1fr); gap: 12px 34px; }

  .last__img { height: 380px; }
  .last__box { padding: 44px 48px; max-width: 720px; }
  .last__title { font-size: 30px; }
  .last__cta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .last__facts { grid-auto-flow: column; grid-auto-columns: max-content; gap: 22px; }

  .foot__inner { padding-block: 54px 44px; }
}

/* ==========================================================================
   PC
   ========================================================================== */
@media (min-width: 1000px) {
  body { padding-bottom: 0; }
  html { scroll-padding-top: 88px; }
  :root { --head-h: 76px; }

  .burger { display: none; }
  .drawer { display: none; }
  .spbar { display: none; }

  .gnav { display: block; }
  .gnav ul { display: flex; gap: 26px; }
  .gnav a {
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
  }
  .gnav a:hover { border-bottom-color: var(--orange); }

  .head__actions { display: flex; gap: 10px; margin-left: 8px; }
  .hbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
  }
  .hbtn--ghost { border: 1px solid var(--line); color: var(--coffee); background: var(--white); }
  .hbtn--ghost:hover { background: #F6F1E8; }
  .hbtn--fill { background: var(--orange); color: #fff; }
  .hbtn--fill:hover { background: #A66038; }

  section > .wrap { padding-block: 118px; }
  .sec-title { font-size: 32px; }

  .hero__img { height: min(78vh, 640px); }
  .hero__wrap { margin-top: -140px; }
  .hero__title { font-size: 44px; }
  .hero__lead { font-size: 17px; }

  .about__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
  .about__media { margin-top: 0; }

  .fav__list { gap: 64px; }
  .fav__item { gap: 52px; }
  .fav__name { font-size: 24px; }

  .three__grid { gap: 40px; }

  .moment__list { gap: 34px 48px; }

  .gallery__grid { gap: 12px; grid-auto-rows: calc((min(100vw - 40px, 1160px) - 36px) / 4); }

  .owner__inner { gap: 64px; }

  .last__img { height: 460px; }
  .last__wrap { margin-top: -120px; }
}
.sample-ribbon{position:fixed;z-index:9999;left:18px;bottom:18px;display:flex;align-items:center;gap:14px;padding:10px 14px;border-radius:999px;background:#202735;color:#fff;box-shadow:0 10px 28px rgba(0,0,0,.2);font-family:"Noto Sans JP",sans-serif;font-size:11px}
.sample-ribbon a{color:#fff;text-decoration:none;opacity:.78}.sample-ribbon a:hover{opacity:1}
.is-embed .sample-ribbon{display:none}
@media(max-width:600px){.sample-ribbon{left:10px;bottom:84px;padding:8px 11px;font-size:9px}}
