@charset "UTF-8";
/* ===============================
  Base / Reset
=============================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1.5;
  scroll-behavior: smooth;
  background: #fff;
}

body {
  margin: 0;
  background: #fff; /* 水色余白が出るのを潰す */
}

img {
  max-width: 100%;
  display: block;
  border-style: none;
  overflow: clip;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 1em;
}

/* ===============================
  Theme
=============================== */
:root {
  --main: #f9f5ed;
  --base: #fff;
  --accent: #83776a;
  --header-h: 64px;
}

/* ===============================
  Utilities
=============================== */
.u-container {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 80px 40px;
}

@media (max-width: 768px) {
  .u-container {
    width: min(390px, 100%);
    padding: 64px 20px;
  }
}
/* 見本の見出し（英＋線＋日本語） */
.u-sectionTitle {
  color: var(--accent);
  margin: 0 0 32px;
}

.u-sectionTitleEn {
  font-family: "Noto Serif JP";
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.u-sectionTitleJp {
  display: block;
  margin-top: 6px;
  padding-left: 40px;
  position: relative;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.u-sectionTitleJp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

/* Read More（中央＋右に線） */
.u-readMoreBtn {
  display: block;
  width: 160px;
  padding: 10px 0;
  margin: 18px auto 0;
  background: #fff;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
}

.u-readMoreBtn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -44px;
  width: 88px;
  height: 1px;
  background: var(--accent);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.u-readMoreBtn:hover {
  background: var(--accent);
  color: #fff;
}

.u-readMoreBtn:hover::after {
  right: -52px;
}

.u-readMoreBtn--center {
  margin-left: auto;
  margin-right: auto;
}

/* ===============================
  Header
=============================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: #fff;
  z-index: 100;
}

.header__inner {
  width: min(1080px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logoLink {
  display: inline-block;
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}

.header__link {
  font-family: "Noto Serif JP";
  font-weight: 700;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.1em;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.header__link:hover {
  opacity: 0.7;
}

/* ===============================
  Main
=============================== */
.main {
  margin-top: var(--header-h);
}

/* ===============================
  First View (見本の核)
  ・背景は画面幅
  ・PCは左に余白
  ・タイトル枠は“左寄りに乗る”
=============================== */
.firstView {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url(../image/fv.png);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* PC：左を空ける（見本の “右に寄った大写真”） */
@media (min-width: 769px) {
  .firstView {
    padding-left: 280px;
  }
}
/* タイトル枠 */
.firstView__title {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--accent);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Noto Serif JP";
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  /* 見本の位置感：左の余白エリア寄り */
  left: 140px;
  bottom: 80px;
}

/* SP：中央に寄せて少し上 */
@media (max-width: 768px) {
  .firstView {
    height: auto;
    padding: 220px 0 120px;
    background-position: center;
  }
  .firstView__title {
    width: 200px;
    height: 200px;
    left: 50%;
    top: 90px;
    bottom: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 24px;
  }
}
/* ===============================
  Concept
=============================== */
.concept__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}

@media (max-width: 768px) {
  .concept__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
/* Conceptの本文（見本の行間） */
.concept__text p {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
}

/* ===============================
  Menu (背景帯＋番号ボックス)
=============================== */
.menu {
  background: #f9f5ed;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* ← centerにしない */
  gap: 40px;
  margin-top: 24px;
}

/* カード幅 */
.menu__item {
  position: relative;
  width: 100%;
  max-width: 320px;
}

/* 👇 段々の正体はこれ */
.menu__item:nth-of-type(2) {
  margin-top: 40px;
}

.menu__item:nth-of-type(3) {
  margin-top: 80px;
}

/* 画像 */
.menu__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* 番号（左上の白い四角） */
.menu__item::before {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.85);
  color: #83776a;
  font-family: "Noto Serif JP";
  font-weight: 700;
  font-size: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  content: "";
}

.menu__item:nth-of-type(1)::before {
  content: "01";
}

.menu__item:nth-of-type(2)::before {
  content: "02";
}

.menu__item:nth-of-type(3)::before {
  content: "03";
}

/* 商品名・価格 */
.menu__price {
  margin-top: 10px;
  font-family: "Noto Serif JP";
  font-weight: 700;
  color: #83776a;
}

/* SPは段々を解除（縦並び） */
@media (max-width: 768px) {
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu__item:nth-of-type(2),
  .menu__item:nth-of-type(3) {
    margin-top: 0;
  }
}
/* ===============================
  Fixed Background
=============================== */
.fixedBg {
  height: 500px;
  background-image: url(../image/fixed_bg.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .fixedBg {
    height: 350px;
    background-attachment: scroll;
  }
}
/* ===============================
  Shop
=============================== */
.shop__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}

@media (max-width: 768px) {
  .shop__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.shop__title {
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 12px;
}

.shop__dlInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #ccc;
}

.shop__dlTitle {
  width: 70px;
  font-weight: 400;
  color: #333;
}

.shop__dlData {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* ===============================
  Footer
=============================== */
.footer {
  background: var(--main);
}

.footer__inner {
  padding: 40px;
  text-align: center;
}

@media (max-width: 768px) {
  .footer__inner {
    padding: 40px 20px;
  }
}
.footer__logoLink {
  display: inline-block;
  margin: 0 auto 16px;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin: 0 0 24px;
}

.footer__link {
  font-family: "Noto Serif JP";
  font-weight: 700;
  color: var(--accent);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.footer__link:hover {
  opacity: 0.7;
}

.footer__copy {
  font-size: 14px;
  color: var(--accent);
}

/* ===============================
  Fixed Reservation Button (右側の縦ボタン)
=============================== */
.fixedBtn {
  position: fixed;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 90;
}

/* <a>が中にある想定 */
.fixedBtn a {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding: 16px 10px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  letter-spacing: 0.12em;
  font-size: 12px;
  display: inline-block;
}