```css
:root {
  --blue: #2f6fb3;
  --blue-dark: #255b92;
  --blue-light: #dceaf7;
  --cream: #f8f3ea;
  --beige: #e8dfd2;
  --greige: #d8d3ca;
  --base: #f8f3ea;
  --base2: #eee7dc;
  --text: #333333;
  --muted: #6d6a65;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(75, 64, 50, 0.1);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--base);
  color: var(--text);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Times New Roman", serif;
  line-height: 1.8;
}

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

a {
  text-decoration: none;
}

.recoa-page {
  overflow-x: hidden;
  background: var(--base);
}

/* =========================
   Header
========================= */

.recoa-header {
  position: fixed;
  top: 14px;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 0 14px;
  transition: 0.35s ease;
}

.recoa-header-inner {
  max-width: 1120px;
  height: 68px;
  margin: 0 auto;
  padding: 0 12px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(75, 64, 50, 0.12);
}

.recoa-header.is-scrolled .recoa-header-inner {
  height: 60px;
  background: rgba(255, 255, 255, 0.94);
}

.recoa-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.recoa-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.recoa-nav a {
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.16em;
  transition: 0.3s;
}

.recoa-nav a:hover {
  color: var(--blue);
}

.recoa-header-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f6fb3, #5f9ed8);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: 0.3s;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(47, 111, 179, 0.24);
}

.recoa-header-reserve:hover {
  background: linear-gradient(135deg, #255b92, #4c8fc9);
}

/* =========================
   Button
========================= */

.recoa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: none;
  border-radius: 999px;
  padding: 0 28px;
  font-size: 14px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
}

.recoa-button-main {
  background: linear-gradient(135deg, #2f6fb3, #5f9ed8);
  color: #ffffff;
  border: 1px solid rgba(47, 111, 179, 0.35);
  box-shadow: 0 10px 24px rgba(47, 111, 179, 0.22);
}

.recoa-button-main:hover {
  background: linear-gradient(135deg, #255b92, #4c8fc9);
  color: #ffffff;
  transform: translateY(-2px);
}

.recoa-button-sub {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.recoa-button-sub:hover {
  background: rgba(255, 255, 255, 0.18);
}

.recoa-button-sub-dark {
  border: 1px solid #b8b2a8;
  color: #4a4640;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(95, 88, 78, 0.1);
}

.recoa-button-sub-dark:hover {
  background: #f2f0ec;
}

/* =========================
   Hero
========================= */

.recoa-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: url("../images/firstview-01.png");
  background-size: cover;
  background-position: center center;
  background-color: #111111;
}

.recoa-hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 4s ease;
}

.recoa-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.recoa-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.24), transparent);
  pointer-events: none;
}
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.12), transparent);
  pointer-events: none;
}

.recoa-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 120px 24px 90px;
  color: var(--white);
}

.recoa-hero-en {
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: 0.34em;
  color: rgba(255, 255, 255, 0.78);
  animation: heroFade 1.1s ease both;
}

.recoa-hero-title {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 9vw, 76px);
  font-weight: 200;
  line-height: 1.65;
  letter-spacing: 0.18em;
  animation: heroFade 1.1s 0.2s ease both;
}

.recoa-hero-text {
  margin: 26px 0 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  animation: heroFade 1.1s 0.4s ease both;
}

.recoa-hero-buttons {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: heroFade 1.1s 0.6s ease both;
}

.recoa-scroll {
  position: absolute;
  right: 22px;
  bottom: 30px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.recoa-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  margin: 12px auto 0;
  background: rgba(255, 255, 255, 0.65);
  animation: scrollLine 1.8s infinite;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* =========================
   Common section
========================= */

.recoa-section {
  padding: 86px 22px;
}

.recoa-container {
  max-width: 1120px;
  margin: 0 auto;
}

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

.recoa-section-en {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.recoa-section-title {
  margin: 18px 0 0;
  color: #2f2f2f;
  font-size: clamp(30px, 7vw, 52px);
  font-weight: 200;
  line-height: 1.72;
  letter-spacing: 0.15em;
}

.recoa-line {
  width: 58px;
  height: 1px;
  margin: 24px auto 0;
  background: var(--blue);
}

.recoa-text {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2.15;
  letter-spacing: 0.06em;
}

.fade-up {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Concept
========================= */

.recoa-concept {
  background: linear-gradient(180deg, #eee7dc, #f8f3ea);
}

.recoa-concept-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 46px;
  align-items: center;
}

.recoa-image-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.recoa-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.recoa-feature-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.recoa-feature {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  padding: 22px 16px;
  border: 1px solid rgba(47, 111, 179, 0.12);
  box-shadow: 0 8px 24px rgba(75, 64, 50, 0.08);
}

.recoa-feature span {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.recoa-feature h3 {
  margin: 6px 0 6px;
  color: var(--text);
  font-size: 16px;
  letter-spacing: 0.12em;
}

.recoa-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

/* =========================
   News
========================= */

.recoa-news {
  background: #f6efe5;
}

.recoa-news-list {
  max-width: 860px;
  margin: 44px auto 0;
  display: grid;
  gap: 12px;
}

.recoa-news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border-left: 5px solid var(--blue);
  box-shadow: 0 8px 24px rgba(75, 64, 50, 0.08);
  transition: 0.3s;
}

.recoa-news-item a {
  display: contents;
  color: inherit;
}

.recoa-news-item time,
.recoa-news-date {
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.recoa-news-item h3,
.recoa-news-title {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  letter-spacing: 0.06em;
}

.recoa-news-excerpt {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.recoa-news-loading {
  text-align: center;
  color: var(--muted);
}

.recoa-news-blog-link {
  margin-top: 30px;
  text-align: center;
}

/* =========================
   Menu
========================= */

.recoa-menu {
  background: linear-gradient(180deg, #ffffff, #f8f3ea);
}

.recoa-menu-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.recoa-menu-card {
  min-height: 180px;
  padding: 28px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #e8dfd2);
  border: 1px solid rgba(47, 111, 179, 0.12);
  box-shadow: 0 8px 24px rgba(75, 64, 50, 0.08);
}

.recoa-menu-label {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.recoa-menu-card h3 {
  margin: 24px 0 0;
  color: var(--text);
  font-size: 20px;
  letter-spacing: 0.12em;
}

.recoa-menu-card .price {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* =========================
   Access
========================= */

.recoa-access {
  background: linear-gradient(180deg, #eee7dc, #e3edf7);
}

.recoa-access-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}

.recoa-access-box {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
  border: 1px solid rgba(47, 111, 179, 0.12);
}

.recoa-access-box h3 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 26px;
  font-weight: 200;
  letter-spacing: 0.18em;
}

.recoa-parking-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  cursor: pointer;
  transition: 0.3s;
}

.recoa-parking-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(75, 64, 50, 0.14);
}

.recoa-parking-card img {
  display: block;
  width: 100%;
}

.recoa-parking-note {
  margin-top: 16px;
}

.recoa-map-embed {
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
}

.recoa-map-embed iframe {
  display: block;
  width: 100%;
  height: 300px;
}

.recoa-map-button-wrap {
  margin-top: 18px;
}

/* =========================
   Reserve
========================= */

.recoa-reserve {
  background: linear-gradient(135deg, #f8f3ea, #e3edf7);
  text-align: center;
}

.recoa-reserve .recoa-text {
  max-width: 720px;
  margin: 24px auto 0;
}

.recoa-reserve-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   Footer
========================= */

.recoa-footer {
  background: #d8d3ca;
  padding: 48px 20px 88px;
  text-align: center;
  color: #6f6a62;
}

.recoa-footer img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 10px;
}

.recoa-footer p {
  margin: 0;
  letter-spacing: 0.2em;
}

.recoa-footer small {
  display: block;
  margin-top: 10px;
  letter-spacing: 0.05em;
}

/* =========================
   Parking modal
========================= */

.recoa-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.65);
}

.recoa-modal.is-show {
  display: flex;
}

.recoa-modal-inner {
  position: relative;
  width: min(92vw, 900px);
  max-width: 900px;
  background: #ffffff;
  border-radius: 22px;
  padding: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.recoa-modal-inner img {
  display: block;
  width: 100%;
  max-height: 76vh;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

.recoa-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #333333;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

/* =========================
   Fixed reserve button
========================= */

.recoa-fixed-reserve {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 850;
  display: none;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f6fb3, #6ba7df);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 34px rgba(47, 111, 179, 0.45);
  border: 3px solid rgba(255, 255, 255, 0.9);
}

.recoa-fixed-reserve::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  border: 1px solid rgba(47, 111, 179, 0.35);
  animation: reservePulse 1.8s infinite;
}

@keyframes reservePulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

/* =========================
   Blog page
========================= */

.recoa-blog-page {
  background: #f4ede3;
  min-height: 70vh;
  padding-top: 120px;
  padding-bottom: 120px;
}

.recoa-blog-list {
  max-width: 820px;
  margin: 60px auto 0;
}

.recoa-blog-card {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  margin-bottom: 24px;
  box-shadow: 0 18px 45px rgba(90, 70, 50, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recoa-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(90, 70, 50, 0.13);
}

.recoa-blog-card a {
  display: block;
  padding: 30px 34px;
  color: inherit;
  text-decoration: none;
}

.recoa-blog-date {
  display: block;
  margin-bottom: 12px;
  color: #4b8fd6;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.recoa-blog-title {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #333;
}

.recoa-blog-excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: #666;
}

/* =========================
   Responsive
========================= */

@media (max-width: 900px) {
  .recoa-nav,
  .recoa-header-reserve {
    display: none;
  }

  .recoa-concept-grid,
  .recoa-access-grid {
    grid-template-columns: 1fr;
  }

  .recoa-menu-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.recoa-hero-overlay {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.12) 72%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent);
}
  .recoa-header {
    display: none;
  }

  .recoa-hero {
    min-height: 100svh;
    align-items: flex-end;
  }

  .recoa-hero-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #111111;
  }

  .recoa-hero-overlay {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.05) 72%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent);
  }

  .recoa-hero-inner {
    padding: 70px 22px 96px;
  }

  .recoa-hero-en {
    font-size: 10px;
    letter-spacing: 0.28em;
    margin-bottom: 16px;
  }

  .recoa-hero-title {
    font-size: 42px;
    line-height: 1.55;
    letter-spacing: 0.12em;
  }

  .recoa-hero-text {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.95;
  }

  .recoa-hero-buttons {
    margin-top: 28px;
    display: grid;
    gap: 10px;
  }

  .recoa-button {
    width: 100%;
    min-height: 54px;
  }

  .recoa-scroll {
    display: none;
  }

  .recoa-section {
    padding: 72px 18px;
  }

  .recoa-section-title {
    line-height: 1.65;
    letter-spacing: 0.12em;
  }

  .recoa-concept-grid {
    margin-top: 42px;
    gap: 28px;
  }

  .recoa-feature-grid,
  .recoa-menu-grid {
    grid-template-columns: 1fr;
  }

  .recoa-feature {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 14px;
    text-align: left;
  }

  .recoa-feature span {
    grid-row: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    letter-spacing: 0;
  }

  .recoa-news-list {
    margin-top: 36px;
  }

  .recoa-news-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px;
  }

  .recoa-news-item a {
    display: block;
  }

  .recoa-news-item time {
    display: block;
    margin-bottom: 6px;
  }

  .recoa-menu-card {
    min-height: 142px;
  }

  .recoa-access-grid {
    margin-top: 38px;
  }

  .recoa-access-box {
    padding: 20px;
  }

  .recoa-reserve-buttons {
    display: grid;
  }

  .recoa-fixed-reserve {
    display: flex;
  }

  .recoa-modal {
    padding: 18px;
  }

  .recoa-modal-inner {
    width: 94vw;
    max-width: 420px;
    padding: 10px;
  }

  .recoa-modal-inner img {
    max-height: 70vh;
  }

  .recoa-modal-close {
    top: -14px;
    right: -10px;
  }

  .recoa-blog-page {
    padding-top: 90px;
    padding-bottom: 80px;
  }

  .recoa-blog-list {
    margin-top: 40px;
  }

  .recoa-blog-card a {
    padding: 24px 22px;
  }

  .recoa-blog-title {
    font-size: 20px;
  }
}

/* ファーストビュー文字を必ず前面に出す修正 */
.recoa-hero {
  position: relative;
}

.recoa-hero-slide {
  z-index: 1;
}

.recoa-hero-overlay {
  z-index: 2;
}

.recoa-hero-inner {
  position: relative;
  z-index: 10;
  color: #ffffff;
}

.recoa-hero-en,
.recoa-hero-title,
.recoa-hero-text {
  color: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.recoa-hero-buttons {
  position: relative;
  z-index: 11;
}

/* =========================
   スマホ表示 最終強制修正
========================= */

@media (max-width: 640px) {
  .recoa-hero {
    position: relative !important;
    min-height: 100svh !important;
    display: flex !important;
    align-items: flex-end !important;
    overflow: hidden !important;
    background-image: url("../images/firstview-01.png") !important;
    background-size: cover !important;
    background-position: center center !important;
  }

  .recoa-hero-slide {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  .recoa-hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.12) 72%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent) !important;
    pointer-events: none !important;
  }

  .recoa-hero-inner {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    padding: 70px 22px 96px !important;
    color: #ffffff !important;
  }

  .recoa-hero-en,
  .recoa-hero-title,
  .recoa-hero-text {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.65) !important;
  }

  .recoa-hero-title {
    font-size: 42px !important;
    line-height: 1.55 !important;
    letter-spacing: 0.12em !important;
  }

  .recoa-hero-text {
    font-size: 14px !important;
    line-height: 1.95 !important;
  }

  .recoa-hero-buttons {
    position: relative !important;
    z-index: 11 !important;
  }
}

```css
/* =========================
   Menu note
========================= */

.recoa-menu-note {
  max-width: 780px;
  margin: 64px auto 0;
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 28px rgba(75, 64, 50, 0.08);
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.06em;
}
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 28px rgba(75, 64, 50, 0.08);
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.06em;
}

.recoa-menu-note p {
  margin: 0;
}

.recoa-menu-note p + p {
  margin-top: 14px;
}

@media (max-width: 640px) {
  .recoa-menu-note {
    margin-top: 48px;
    padding: 24px 18px;
    text-align: left;
    font-size: 14px;
    line-height: 2;
  }

  .recoa-menu-note br {
    display: none;
  }
}



/* =========================
   Villa Lodola
========================= */

.recoa-villa {
  background: linear-gradient(180deg, #f8f3ea, #eef5ea);
}

.recoa-villa-main {
  max-width: 1080px;
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.recoa-villa-image {
  overflow: hidden;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(75, 64, 50, 0.12);
}

.recoa-villa-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.recoa-villa-text {
  padding: 46px 42px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(246, 241, 232, 0.9));
  box-shadow: 0 18px 48px rgba(75, 64, 50, 0.1);
  border: 1px solid rgba(120, 140, 95, 0.18);
  color: var(--muted);
  font-size: 15px;
  line-height: 2.12;
  letter-spacing: 0.06em;
}

.recoa-villa-text p {
  margin: 0;
}

.recoa-villa-text p + p {
  margin-top: 20px;
}

.recoa-villa-lead {
  color: #4f6f43;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.12em;
}

.recoa-villa-message {
  margin-top: 34px !important;
  color: #4f6f43;
  font-size: 21px;
  line-height: 1.9;
  letter-spacing: 0.14em;
}

@media (max-width: 900px) {
  .recoa-villa-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .recoa-villa-image {
    max-width: 620px;
    margin: 0 auto;
  }

  .recoa-villa-image img {
    aspect-ratio: 4 / 3;
  }

  .recoa-villa-text {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .recoa-villa-main {
    margin-top: 42px;
    gap: 28px;
  }

  .recoa-villa-image {
    border-radius: 24px;
  }

  .recoa-villa-image img {
    aspect-ratio: 1 / 1;
  }

  .recoa-villa-text {
    padding: 32px 22px;
    border-radius: 26px;
    font-size: 14px;
    line-height: 2;
    text-align: left;
  }

  .recoa-villa-text br {
    display: none;
  }

  .recoa-villa-lead {
    text-align: center;
    font-size: 17px;
    line-height: 1.9;
  }

  .recoa-villa-message {
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
  }
}


/* =========================
   スマホ ファーストビュー文字調整
========================= */

@media (max-width: 640px) {
  .recoa-hero-inner {
    padding: 0 22px 118px !important;
  }

  .recoa-hero-title {
    font-size: 34px !important;
    line-height: 1.65 !important;
    letter-spacing: 0.08em !important;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.75) !important;
  }

  .recoa-hero-text {
    margin-top: 18px !important;
    font-size: 13px !important;
    line-height: 1.9 !important;
    letter-spacing: 0.04em !important;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.7) !important;
  }

  .recoa-hero-en {
    font-size: 10px !important;
    letter-spacing: 0.18em !important;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.7) !important;
  }

  .recoa-hero-overlay {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08) 76%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.25), transparent) !important;
  }
}

@media (max-width: 640px) {
  .recoa-hero-title {
    display: block !important;
    font-size: 34px !important;
    line-height: 1.75 !important;
    letter-spacing: 0.06em !important;
  }

  .recoa-hero-title br {
    display: block !important;
  }
}

/* =========================
   iPhone ファーストビュータイトル改行固定
========================= */

@media (max-width: 640px) {
  .recoa-hero-title {
    font-size: 30px !important;
    line-height: 1.75 !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap !important;
  }

  .recoa-hero-title br {
    display: block !important;
  }
}

@media (max-width: 390px) {
  .recoa-hero-title {
    font-size: 28px !important;
    letter-spacing: 0 !important;
  }
}

@media (max-width: 360px) {
  .recoa-hero-title {
    font-size: 26px !important;
  }
}