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

:root {
  --color-main: #d9822b;
  --color-main-dark: #bf6f22;
  --color-accent: #fff4e8;
  --color-accent-2: #f8efe6;
  --color-bg: #fffdfa;
  --color-white: #ffffff;
  --color-text: #2f2a26;
  --color-text-sub: #6b625b;
  --color-line: #eadccf;
  --color-dark: #3f3a36;
  --shadow-soft: 0 10px 30px rgba(80, 55, 30, 0.08);
}

/* スマホだけ改行 */
.sp-br {
  display: inline;
}

@media (min-width: 768px) {
  .sp-br {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.75;
  letter-spacing: 0.01em;
  padding-bottom: 100px;
}

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

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

.container {
  width: min(100% - 32px, 1040px);
  margin: 0 auto;
}

section {
  padding: 84px 0 72px;
}

/* 見出しは明朝 */
.section-title,
.fv-shopname,
.fv-akasaka__station,
.fv-akasaka__menu,
.fv-akasaka__price,
.fv-akasaka__lead,
.access__lead,
.cta-final__title,
.footer__name {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.section-title {
  margin: 0 0 24px;
  font-size: 1.75rem;
  line-height: 1.45;
  font-weight: 800;
  color: var(--color-text);
  text-align: center;
}

.section-text {
  margin: 0 0 26px;
  font-size: 1rem;
  color: var(--color-text-sub);
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  text-align: center;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
}

.btn:hover {
  opacity: 0.96;
  transform: translateY(-1px);
}

.btn--primary {
  color: var(--color-white);
  background: linear-gradient(180deg, #e0903a 0%, #d9822b 100%);
  box-shadow: 0 8px 20px rgba(217, 130, 43, 0.24);
}

.btn--primary:hover {
  background: linear-gradient(180deg, #da8933 0%, #c97523 100%);
}

.btn--secondary {
  color: var(--color-main);
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(217, 130, 43, 0.34);
  backdrop-filter: blur(6px);
}

.center-btn {
  text-align: center;
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

/* =========================
   ファーストビュー全体
========================= */
.fv-akasaka {
  padding: 20px 16px 40px;
  background:
    #f5f5f3
    url("/lp/assets/img/fv-bg-white.png")
    left top / 1400px auto
    no-repeat;
}

.fv-shopname {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  padding: 0 0 20px;
  color: #4c4037;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.fv-shopname__logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  position: relative;
  top: 1px;
}

.fv-shopname__text {
  display: inline-block;
}

.fv-akasaka__inner {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
}

.fv-scroll {
  margin-top: 20px;
  text-align: center;
}

.fv-scroll__text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #9b8f86;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
}

.fv-scroll__line {
  display: block;
  width: 1px;
  height: 32px;
  margin: 6px auto 0;
  background: #d8cfc7;
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    transform: scaleY(0);
  }
}

/* 葉っぱ画像 */
.fv-akasaka__leaf {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  user-select: none;
}

.fv-akasaka__leaf--top-right {
  top: -18px;
  right: -8px;
  width: 92px;
}

.fv-akasaka__leaf--bottom-left {
  left: -16px;
  bottom: -18px;
  width: 96px;
}

/* メイン画像 */
.fv-akasaka__visual {
  position: relative;
  overflow: visible;
}

.fv-akasaka__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 6.1;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
  .fv-akasaka__photo {
    aspect-ratio: 3 / 6.2;
    object-position: center 50%;
  }
}

/* オーバーレイ */
.fv-akasaka__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 26px 24px 34px;
  text-align: center;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 30%,
    rgba(255, 255, 255, 0.03) 100%
  );
}

/* 文字ブロック */
.fv-akasaka__copy-group {
  position: relative;
  width: 100%;
  max-width: 390px;
  margin: 0 auto 18px;
  padding: 34px 22px 28px;
  z-index: 1;
  backdrop-filter: blur(4px);
}

.fv-akasaka__copy-group::before {
  content: "";
  position: absolute;
  left: -18%;
  right: -18%;
  top: -18%;
  bottom: -18%;
  z-index: -1;
  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.78) 30%,
    rgba(255,255,255,0.52) 55%,
    rgba(255,255,255,0.22) 75%,
    rgba(255,255,255,0) 100%
  );
  filter: blur(14px);
}

.fv-akasaka__copy-group::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  top: -12%;
  bottom: -12%;
  z-index: -1;
  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,0.88) 0%,
    rgba(255,255,255,0.65) 35%,
    rgba(255,255,255,0.30) 65%,
    rgba(255,255,255,0) 100%
  );
  filter: blur(22px);
}

/* 文字 */
.fv-akasaka__station {
  margin: 0 0 32px;
  color: #4c4037;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.fv-akasaka__menu {
  margin: 0 0 3px;
  color: #4c4037;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.fv-akasaka__price {
  margin: 0 0 30px;
  color: #d9822b;
  font-size: 2.15rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.fv-akasaka__lead {
  margin: 0 0 30px;
  color: #4c4037;
  font-size: 0.98rem;
  line-height: 1.9;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* 会員登録なし */
.fv-akasaka__app-note {
  margin: 0;
  padding: 0;
  display: inline-block;
  color: #677955;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
}

/* ボタン */
.fv-akasaka__buttons {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 290px;
}

.fv-akasaka__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 16px 24px;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 700;
  border-radius: 999px;
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
}

.fv-akasaka__btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

.fv-akasaka__btn--primary {
  background: linear-gradient(180deg, #e28d3a 0%, #d9822b 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(217,130,43,0.35);
}

.fv-akasaka__btn--tel {
  background: rgba(255, 255, 255, 0.88);
  color: #8b5d33;
  border: 1.5px solid rgba(217, 130, 43, 0.28);
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 16px rgba(80, 55, 30, 0.08);
}

/* =========================
   安心
========================= */
.trust {
  background: var(--color-white);
}

.trust__box {
  padding: 28px 22px;
  background: linear-gradient(180deg, #fffaf5 0%, #fff 100%);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding: 15px 16px 15px 46px;
  background: var(--color-white);
  border: 1px solid #f1e4d8;
  border-radius: 16px;
  color: var(--color-text);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--color-main);
  font-size: 0.95rem;
  font-weight: 900;
}

/* =========================
   価格訴求
========================= */
.appeal {
  background: linear-gradient(180deg, #fff7ef 0%, #fffdfa 100%);
}

.appeal__wrap {
  padding: 30px 22px;
}

.appeal__price-box {
  margin: 0 0 22px;
  padding: 24px 18px;
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
  border: 1px solid #f0decb;
  border-radius: 20px;
  text-align: center;
}

.appeal__label {
  margin: 0 0 8px;
  color: var(--color-text-sub);
  font-size: 0.92rem;
  font-weight: 700;
}

.appeal__price {
  margin: 0;
  color: var(--color-main);
  font-size: 2.2rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.appeal__sub {
  margin: 8px 0 0;
  color: var(--color-text-sub);
  font-size: 0.88rem;
}

.appeal__buttons {
  display: grid;
  gap: 12px;
}

/* =========================
   写真
========================= */
.gallery {
  background: var(--color-white);
}

.gallery__grid {
  display: grid;
  gap: 12px;
}

.gallery__grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.gallery__text {
  margin: 18px 0 0;
  text-align: center;
  color: var(--color-text-sub);
}

/* =========================
   料金
========================= */
.menu {
  background: #fffaf4;
}

.menu__list {
  display: grid;
  gap: 14px;
}

.menu__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 18px;
  background: #fff;
  border: 1px solid #eedfce;
  border-radius: 18px;
}

.menu__item--featured {
  border: 2px solid rgba(217, 130, 43, 0.44);
  background: linear-gradient(180deg, #fffaf4 0%, #fff 100%);
}

.menu__time {
  font-size: 1rem;
  font-weight: 800;
}

.menu__price {
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--color-text);
}

.menu__item--featured .menu__price {
  color: var(--color-main);
  font-size: 1.4rem;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.menu__notes {
  margin-top: 14px;
}

.menu__note {
  margin: 6px 0 0;
  color: var(--color-text-sub);
  font-size: 0.88rem;
  text-align: left;
}

/* =========================
   中間CTA
========================= */
.cta-mid {
  padding: 24px 0 8px;
  background: #fffdfa;
}

.cta-mid__box {
  padding: 24px 20px;
  text-align: center;
}

.cta-mid__text {
  margin: 0 0 14px;
  color: #677955;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
}

.cta-mid__buttons {
  display: grid;
  gap: 12px;
}

/* =========================
   おすすめ
========================= */
.recommend {
  background: var(--color-white);
}

.recommend__box {
  padding: 28px 22px;
}

.recommend__text {
  margin-top: 22px;
  margin-bottom: 0;
}

/* =========================
   アクセス
========================= */
.access {
  background: linear-gradient(180deg, #fff7ef 0%, #fffdfa 100%);
}

.access__wrap {
  padding: 28px 22px;
}

.access__lead {
  margin: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 900;
  text-align: center;
  color: var(--color-text);
}

.access__map-wrap {
  margin-top: 22px;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #eddccc;
  background: #fff;
}

.access__map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.access__map-link {
  text-align: center;
  margin-top: 16px;
}

.access__map-link a {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e3d5c8;
  color: #8b5d33;
  font-size: 0.9rem;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
}

/* =========================
   地域SEOテキスト
========================= */
.area-text {
  background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
  padding: 72px 0;
}

.area-text__box {
  padding: 30px 22px;
}

.area-text__lead {
  margin: 0 0 16px;
  text-align: center;
  color: #6b625b;
  line-height: 1.9;
}

.area-text__text {
  margin: 0;
  text-align: center;
  color: #6b625b;
  line-height: 1.9;
}

/* =========================
   FAQ
========================= */
.faq {
  background: var(--color-white);
}

.faq__box {
  padding: 28px 22px;
}

.faq__list {
  margin: 0;
}

.faq__list dt {
  margin-top: 20px;
  font-weight: 800;
  color: var(--color-text);
}

.faq__list dt:first-child {
  margin-top: 0;
}

.faq__list dd {
  margin: 8px 0 0;
  color: var(--color-text-sub);
}

/* =========================
   最終CTA
========================= */
.cta-final {
  background: linear-gradient(180deg, #f8efe4 0%, #f4e8da 100%);
  padding-bottom: 110px;
}

.cta-final__box {
  padding: 30px 22px;
  text-align: center;
}

.cta-final__title {
  margin: 0 0 14px;
  font-size: 1.65rem;
  line-height: 1.45;
  font-weight: 800;
}

.cta-final__text {
  margin: 0 0 18px;
  color: var(--color-text-sub);
}

.cta-final__app-note {
  margin: 0 0 3px;
  padding: 6px 12px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  color: #677955;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
}

.cta-final__buttons {
  display: grid;
  gap: 12px;
}

/* =========================
   固定CTA
========================= */
.fixed-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  bottom: 16px;
  width: min(100% - 24px, 420px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  z-index: 1000;
  opacity: 0;
  transition: all .35s ease;
}

.fixed-cta.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.fixed-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
}

.fixed-cta__btn--app {
  background: linear-gradient(180deg, #e28d3a 0%, #d9822b 100%);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}

.fixed-cta__btn--tel {
  background: #fff;
  color: #8b5d33;
  border: 1px solid rgba(217,130,43,.3);
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

/* CTAボタン押しやすくする */
.fv-akasaka__btn,
.fixed-cta__btn,
.btn {
  cursor: pointer;
  transition:
    transform .15s ease,
    box-shadow .15s ease,
    opacity .15s ease;
}

.fv-akasaka__btn:active,
.fixed-cta__btn:active,
.btn:active {
  transform: translateY(2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* iPhone下バー対策 */
@supports (padding: env(safe-area-inset-bottom)) {
  body {
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
  }
}

/* =========================
   タブレット以上
========================= */
@media (min-width: 768px) {
  section {
    padding: 88px 0;
  }

  .section-title {
    font-size: 2.15rem;
  }

  .section-text {
    font-size: 1.04rem;
  }

  .fv-akasaka {
    padding: 92px 24px 56px;
    background:
      #f5f5f3
      url("/lp/assets/img/fv-bg-white.png")
      center top / 1600px auto
      no-repeat;
  }

  .fv-shopname {
    gap: 10px;
    font-size: 1.15rem;
    padding: 18px 0 22px;
  }

  .fv-shopname__logo {
    width: 28px;
    height: 28px;
    top: 2px;
    opacity: .92;
  }

  .fv-akasaka__inner {
    width: min(100%, 540px);
  }

  .fv-akasaka__photo {
    aspect-ratio: 3 / 5.4;
  }

  .fv-akasaka__overlay {
    padding: 38px 34px 42px;
  }

  .fv-akasaka__copy-group {
    max-width: 470px;
    margin-bottom: 20px;
    padding: 42px 30px 34px;
  }

  .fv-akasaka__station {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .fv-akasaka__menu {
    font-size: 1.08rem;
    margin-bottom: 10px;
  }

  .fv-akasaka__price {
    font-size: 3.4rem;
    margin-bottom: 16px;
  }

  .fv-akasaka__lead {
    font-size: 1.03rem;
    margin-bottom: 20px;
  }

  .fv-akasaka__app-note {
    margin-bottom: 14px;
    font-size: 0.95rem;
    padding: 7px 14px;
  }

  .fv-akasaka__buttons {
    max-width: 320px;
    gap: 12px;
  }

  .fv-akasaka__btn {
    min-width: 290px;
    min-height: 60px;
    padding: 18px 34px;
    font-size: 1.08rem;
  }

  .fv-akasaka__leaf--top-right {
    top: -24px;
    right: -22px;
    width: 124px;
  }

  .fv-akasaka__leaf--bottom-left {
    left: -24px;
    bottom: -24px;
    width: 124px;
  }

  .gallery__grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .gallery__grid img:first-child {
    grid-row: span 2;
    height: 100%;
    aspect-ratio: auto;
  }

  .menu__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .appeal__buttons {
    grid-template-columns: repeat(2, minmax(220px, 280px));
    justify-content: center;
  }

  .cta-mid__buttons {
    grid-template-columns: repeat(2, minmax(220px, 280px));
    justify-content: center;
  }

  .area-text__lead,
  .area-text__text {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-final__buttons {
    grid-template-columns: repeat(2, minmax(220px, 280px));
    justify-content: center;
  }

  .fixed-cta {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(100%);
    width: min(100% - 32px, 560px);
    bottom: 16px;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(40, 30, 24, 0.18);
  }

  .fixed-cta.show {
    transform: translateX(-50%) translateY(0);
  }
}

/* =========================
   PCで広げすぎない
========================= */
@media (min-width: 1024px) {
  .fv-akasaka__inner {
    width: min(100%, 580px);
  }

  .fv-akasaka__photo {
    aspect-ratio: 3 / 5.1;
  }
}

.footer {
  background: #3f3a36;
  color: #fff;
  padding: 60px 20px 40px;
}

.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer__nap {
  margin-bottom: 28px;
}

.footer__name {
  margin: 0 0 14px;
  font-size: 1.4rem;
  font-weight: 700;
}

.footer__address,
.footer__tel,
.footer__access {
  margin: 0 0 8px;
  color: #ddd;
  line-height: 1.8;
}

.footer__tel a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer__links a {
  color: #ddd;
  font-size: 0.9rem;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
}

.footer__links a:hover {
  color: #fff;
}

.footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: #aaa;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
}