@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap");
:root {
  --bg: #FFFAF2;
  --bg2: #FAF0DF;
  --white: #FFFFFF;
  --text: #4A3F35;
  --text-muted:#8A7868;
  --accent: #753d19;
  --accent-lt: #E5A06B;
  --border: #F0DEC6;
  --radius: 12px;
  --header-h: 64px;
}

/* ===== リセット・ベース ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #FFFAF2;
  color: #4A3F35;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

a:hover {
  opacity: 0.75;
}

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

ul, ol {
  list-style: none;
}

input, select, textarea, button {
  font-family: "Noto Sans JP", sans-serif;
}

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (max-width: 574px) {
  .container {
    padding: 0 12px;
  }
}

.container_narrow {
  max-width: 720px;
}

.section {
  padding: 88px 0;
}

.section_bg {
  background: #FAF0DF;
}

.section_more {
  text-align: center;
  margin-top: 40px;
}

.pc_only {
  display: inline;
}

/* ===== セクションヘッダー ===== */
.section_header {
  text-align: center;
  margin-bottom: 52px;
}

.section_header-left {
  text-align: left;
}
.section_header-left .section_title {
  text-align: left;
}

.section_label {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #E5A06B;
  display: block;
  margin-bottom: 10px;
}

.section_title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
.section_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: #753d19;
}

.section_lead {
  margin-top: 16px;
  font-size: 16px;
  color: #8A7868;
  line-height: 1.9;
}
@media screen and (max-width: 574px) {
  .section_lead {
    font-size: 14px;
    letter-spacing: 0;
  }
}

/* ===== ボタン ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: #753d19;
  color: #FFFFFF;
}
@media (hover: hover) {
  .btn-primary:hover {
    background: #A85320;
    opacity: 1;
  }
}

.btn-outline {
  background: transparent;
  color: #753d19;
  border: 1.5px solid #753d19;
}
@media (hover: hover) {
  .btn-outline:hover {
    background: #753d19;
    color: #FFFFFF;
    opacity: 1;
  }
}
.btn-outline.white {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.6);
}
@media (hover: hover) {
  .btn-outline.white:hover {
    background: #FFFFFF;
    color: #753d19;
    border-color: #FFFFFF;
    opacity: 1;
  }
}

.btn-sm {
  font-size: 13px;
  padding: 10px 20px;
}

.btn-white {
  background: #FFFFFF;
  color: #753d19;
}
@media (hover: hover) {
  .btn-white:hover {
    background: #753d19;
    color: #FFFFFF;
    opacity: 1;
  }
}

.btn-full {
  width: 100%;
  padding: 16px;
  font-size: 15px;
}

br.pc {
  display: none;
}
@media screen and (max-width: 1400px) {
  br.pc {
    display: block;
  }
}
br.xl {
  display: none;
}
@media screen and (max-width: 1199px) {
  br.xl {
    display: block;
  }
}
br.lg {
  display: none;
}
@media screen and (max-width: 991px) {
  br.lg {
    display: block;
  }
}
br.md {
  display: none;
}
@media screen and (max-width: 767px) {
  br.md {
    display: block;
  }
}
br.sm {
  display: none;
}
@media screen and (max-width: 574px) {
  br.sm {
    display: block;
  }
}
br.xs {
  display: none;
}
@media screen and (max-width: 450px) {
  br.xs {
    display: block;
  }
}

/* ===== ヘッダー ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid #F0DEC6;
  height: 64px;
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}

.header_logo a {
  display: block;
  line-height: 1;
}
.header_logo .logo_img {
  display: block;
  height: 40px;
  width: auto;
}

.logo_en {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #753d19;
}

.logo_ja {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #8A7868;
}

.header_nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
.header_nav a {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #4A3F35;
  position: relative;
  padding-bottom: 2px;
}
.header_nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #753d19;
  transition: width 0.25s ease;
}
@media (hover: hover) {
  .header_nav a:hover::after {
    width: 100%;
    opacity: 1;
  }
}
.header_nav .current-menu-item > a,
.header_nav .current_page_item > a {
  color: #753d19;
  opacity: 1;
}
.header_nav .current-menu-item > a::after,
.header_nav .current_page_item > a::after {
  width: 100%;
}
.header_nav .nav_contact {
  background: #753d19 !important;
  color: #FFFFFF !important;
  padding: 8px 18px !important;
  border-radius: 999px;
}
.header_nav .nav_contact::after {
  display: none !important;
}
@media (hover: hover) {
  .header_nav .nav_contact:hover {
    opacity: 0.85 !important;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #4A3F35;
  transition: all 0.25s ease;
}

/* ===== ドロワー ===== */
.drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 200;
  padding: 80px 32px 32px;
  transition: right 0.25s ease;
  box-shadow: -4px 0 20px rgba(61, 53, 48, 0.1);
  overflow-y: auto;
}
.drawer.open {
  right: 0;
}
.drawer ul {
  display: flex;
  flex-direction: column;
}
.drawer li a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  border-bottom: 1px solid #F0DEC6;
  color: #4A3F35;
}

.drawer_close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.drawer_close::before, .drawer_close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 1.5px;
  background: #4A3F35;
  transition: background 0.25s ease;
}
.drawer_close::before {
  transform: rotate(45deg);
}
.drawer_close::after {
  transform: rotate(-45deg);
}
@media (hover: hover) {
  .drawer_close:hover::before, .drawer_close:hover::after {
    background: #753d19;
  }
}

.drawer_tel {
  margin-top: 32px;
  text-align: center;
}
.drawer_tel p {
  font-size: 12px;
  color: #8A7868;
  margin-bottom: 8px;
}
.drawer_tel a {
  font-size: 24px;
  font-weight: 500;
  color: #753d19;
}

.drawer_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.drawer_overlay.open {
  opacity: 1;
  pointer-events: all;
}

main {
  padding-top: 64px;
}

/* ===== ページヒーロー（下層共通） ===== */
.page_hero {
  position: relative;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page_hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page_hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 53, 48, 0.45);
}

.page_hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #FFFFFF;
}

.page_hero-en {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.65);
  display: block;
  margin-bottom: 12px;
}

.page_hero-title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* ===== パンくず ===== */
.breadcrumb {
  background: #FAF0DF;
  padding: 10px 0;
  border-bottom: 1px solid #F0DEC6;
}
.breadcrumb ol {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: #8A7868;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: #8A7868;
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
}

/* ===== CTAバー ===== */
.cta_bar {
  background: #753d19;
  padding: 52px 0;
  text-align: center;
  color: #FFFFFF;
  border-top: 4px solid #A85320;
}

.cta_bar-title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 500;
  margin-bottom: 8px;
}

.cta_bar-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}

.cta_bar-tel {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.cta_bar-hours {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
  display: block;
}

.cta_bar-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== フッター ===== */
#site-footer {
  background: #4D3B2A;
  color: rgba(255, 255, 255, 0.65);
  padding: 52px 0 24px;
}
#site-footer .logo_en {
  color: rgba(255, 255, 255, 0.9);
}
#site-footer .logo_ja {
  color: rgba(255, 255, 255, 0.4);
}

.footer_inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 36px;
}

.footer_tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.footer_info {
  font-size: 14px;
  line-height: 2;
}
.footer_info a {
  color: rgba(255, 255, 255, 0.65);
}

.footer_nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer_nav li {
  list-style: none;
}
.footer_nav a {
  color: rgba(255, 255, 255, 0.5);
}
@media (hover: hover) {
  .footer_nav a:hover {
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
  }
}

.footer_copy {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
}

/* ===== フェードイン ===== */
.fade_in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade_in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== レスポンシブ（共通） ===== */
@media screen and (max-width: 1199px) {
  .header_nav ul {
    gap: 18px;
  }
}
@media screen and (max-width: 991px) {
  .header_nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
  .section {
    padding: 60px 0;
  }
  .page_hero {
    height: 220px;
  }
  .footer_inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .footer_nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .cta_bar-btns {
    flex-direction: column;
    align-items: center;
  }
}
/* ===== ヒーロー ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.88);
}

.hero_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(45, 35, 30, 0.65) 0%, rgba(45, 35, 30, 0.3) 60%, transparent 100%);
}

.hero_content {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
}

.hero_since {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero_since::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.hero_title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.45;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.hero_sub {
  font-size: clamp(13px, 1.6vw, 15px);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 44px;
  max-width: 420px;
  line-height: 2.1;
}

.hero_btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero_tel-box {
  position: absolute;
  bottom: 40px;
  right: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  padding: 18px 26px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(61, 53, 48, 0.12);
  text-align: right;
  border-left: 3px solid #753d19;
}

.hero_tel-label {
  font-size: 11px;
  color: #8A7868;
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.hero_tel-num {
  display: block;
  font-size: 26px;
  font-weight: 500;
  color: #753d19;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.hero_tel-hours {
  font-size: 11px;
  color: #8A7868;
}

/* ===== お知らせ ===== */
.news {
  background: #FFFFFF;
  padding: 24px 0;
  border-bottom: 1px solid #F0DEC6;
}

.news_inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.news_heading {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  min-width: 80px;
  padding-top: 2px;
  color: #753d19;
  letter-spacing: 0.08em;
}

.news_body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .news_body {
    flex: none;
    width: 100%;
  }
}

.news_list {
  display: flex;
  flex-direction: column;
}

.news_item {
  border-bottom: 1px solid #F0DEC6;
}

.news_item:first-child {
  border-top: 1px solid #F0DEC6;
}

.news_item-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  flex-wrap: wrap;
  padding: 10px 4px;
  color: #4A3F35;
  text-decoration: none;
  transition: color 0.25s ease;
}
@media (hover: hover) {
  .news_item-link:hover {
    color: #753d19;
  }
}

.news_date {
  font-size: 12px;
  color: #8A7868;
  min-width: 76px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.news_tag {
  background: #FAF0DF;
  color: #753d19;
  font-size: 11px;
  padding: 2px 12px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  border: 1px solid #F0DEC6;
}

.news_title {
  flex: 1;
  min-width: 0;
}

.news_more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #753d19;
  margin-top: 12px;
  letter-spacing: 0.04em;
  text-decoration: none;
  align-self: flex-end;
}
.news_more::after {
  content: "";
  width: 14px;
  height: 1px;
  background: #753d19;
  transition: width 0.25s ease;
}
@media (hover: hover) {
  .news_more:hover {
    opacity: 1;
  }
  .news_more:hover::after {
    width: 22px;
  }
}

/* ===== フィーチャー ===== */
.features {
  background: #FAF0DF;
  padding: 52px 0;
}

.features_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.feature_item {
  background: #FFFFFF;
  padding: 36px 28px;
  text-align: center;
}

.feature_icon {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
  color: #753d19;
}
.feature_icon svg {
  width: 36px;
  height: 36px;
}

.feature_title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #4A3F35;
  letter-spacing: 0.04em;
}

.feature_text {
  font-size: 14px;
  color: #8A7868;
  line-height: 1.9;
}

/* ===== ABOUTティザー ===== */
.about_teaser {
  padding: 88px 0;
}

.about_teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about_teaser-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 18px rgba(196, 128, 66, 0.1);
}
.about_teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about_since {
  position: absolute;
  top: 0;
  left: 0;
  background: #753d19;
  padding: 10px 18px;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.9);
}

.about_catch {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 500;
  line-height: 1.75;
  margin-top: 28px;
  margin-bottom: 20px;
}

.about_teaser .section_title {
  text-align: left;
  display: block;
}
.about_teaser .section_title::after {
  left: 0;
  transform: none;
}

.about_text {
  font-size: 15px;
  color: #8A7868;
  line-height: 2.1;
  margin-bottom: 12px;
}

.about_points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}

.about_point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.about_point-icon {
  color: #753d19;
  font-weight: 600;
  flex-shrink: 0;
}

.about_teaser-btn {
  margin-top: 28px;
}

/* ===== メニューハイライト ===== */
.menu_highlight {
  background: #FAF0DF;
  padding: 88px 0;
}

.menu_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.menu_card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(196, 128, 66, 0.1);
  border: 1px solid #F0DEC6;
}
@media (hover: hover) {
  .menu_card:hover .menu_card-img img {
    transform: scale(1.04);
  }
}

.menu_card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.menu_card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu_card-body {
  padding: 20px;
}

.menu_card-title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.menu_card-text {
  font-size: 14px;
  color: #8A7868;
  line-height: 1.9;
  margin-bottom: 12px;
}

.menu_card-price {
  font-size: 14px;
  color: #753d19;
  font-weight: 500;
}

/* ===== スタッフプレビュー ===== */
.staff_preview {
  padding: 88px 0;
}

.staff_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}

.staff_card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(196, 128, 66, 0.1);
  border: 1px solid #F0DEC6;
}
@media (hover: hover) {
  .staff_card:hover .staff_card-img img {
    transform: scale(1.04);
  }
}

.staff_card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.staff_card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.staff_card-body {
  padding: 20px;
}

.staff_role {
  font-size: 11px;
  color: #8A7868;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.staff_name {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

.staff_career {
  font-size: 12px;
  color: #E5A06B;
  margin-bottom: 10px;
}

.staff_comment {
  font-size: 14px;
  color: #8A7868;
  line-height: 1.9;
}

/* ===== ギャラリープレビュー ===== */
.gallery_preview {
  background: #FAF0DF;
  padding: 88px 0;
}

.gallery_grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.gallery_thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
}
.gallery_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
@media (hover: hover) {
  .gallery_thumb:hover img {
    transform: scale(1.06);
  }
}

.gallery_more {
  text-align: center;
  margin-top: 32px;
}

/* ===== TOPページ レスポンシブ ===== */
@media screen and (max-width: 991px) {
  .about_teaser-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .hero {
    min-height: 85svh;
  }
  .hero_btns {
    flex-direction: column;
    max-width: 220px;
  }
  .hero_tel-box {
    position: static;
    margin: 0 24px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    border-left: none;
    border-top: 3px solid #753d19;
  }
  .hero_tel-num {
    font-size: 22px;
    margin-bottom: 0;
  }
  .news_inner {
    flex-direction: column;
    gap: 12px;
  }
  .features_grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .menu_cards {
    grid-template-columns: 1fr;
  }
  .staff_grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .gallery_grid4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===== ABOUTページ ===== */
.about_story {
  padding: 88px 0;
}

.about_story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about_story-imgs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about_story-imgs img {
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(196, 128, 66, 0.1);
  width: 100%;
}

.about_story-body h2 {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.65;
}
.about_story-body p {
  font-size: 15px;
  color: #8A7868;
  line-height: 2.1;
  margin-bottom: 20px;
}

.about_sign {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: #753d19;
  margin-top: 28px;
}

.about_values {
  background: #FAF0DF;
  padding: 88px 0;
}

/* 店舗情報（ABOUTページ） */
.shop_info {
  max-width: 640px;
  text-align: center;
}

.shop_info-table {
  margin: 0 auto;
}

.shop_info-table.menu_table td {
  color: #4A3F35;
  font-weight: 400;
}

.shop_info-tel {
  color: #753d19;
  font-weight: 500;
}

.shop_info-note {
  font-size: 12px;
  color: #8A7868;
}

.shop_info-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.values_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value_card {
  background: #FFFFFF;
  padding: 36px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(196, 128, 66, 0.1);
  border: 1px solid #F0DEC6;
  border-top: 3px solid #753d19;
}

.value_num {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 32px;
  color: #F0DEC6;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
}

.value_title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.value_text {
  font-size: 14px;
  color: #8A7868;
  line-height: 1.9;
}

/* ===== MENUページ ===== */
.menu_section {
  padding: 88px 0;
}

.menu_tabs {
  display: flex;
  border-bottom: 2px solid #F0DEC6;
  margin-bottom: 40px;
}

.tab_btn {
  background: none;
  border: none;
  padding: 12px 36px;
  font-size: 14px;
  color: #8A7868;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.25s ease;
  letter-spacing: 0.06em;
}
.tab_btn.active {
  color: #753d19;
  border-bottom-color: #753d19;
}
@media (hover: hover) {
  .tab_btn:hover {
    color: #753d19;
  }
}
@media screen and (max-width: 574px) {
  .tab_btn {
    padding: 12px 4px;
    font-size: 12px;
    flex: 1;
  }
}

.menu_content-tab {
  display: none;
}
.menu_content-tab.active {
  display: block;
}

.menu_table {
  width: 100%;
  border-collapse: collapse;
}
.menu_table tr {
  border-bottom: 1px solid #F0DEC6;
}
.menu_table tr:last-child {
  border-bottom: none;
}
.menu_table th {
  text-align: left;
  padding: 18px 24px 18px 0;
  font-weight: 400;
  font-size: 15px;
  width: 55%;
}
.menu_table td {
  text-align: right;
  padding: 18px 0;
  font-size: 15px;
  color: #753d19;
  font-weight: 500;
}

.menu_note {
  margin-top: 32px;
  font-size: 13px;
  color: #8A7868;
  line-height: 2;
}

.menu_relax-note {
  font-size: 12px;
  color: #8A7868;
  margin-top: 16px;
  padding: 12px 16px;
  background: #FAF0DF;
  border-radius: 12px;
}

.menu_table-cat th {
  padding-top: 32px;
  padding-bottom: 8px;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #753d19;
  border-bottom: 2px solid #753d19;
  width: auto;
}
.menu_table-cat:first-child th {
  padding-top: 4px;
}

.menu_cat-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  color: #8A7868;
  font-weight: 400;
  margin-left: 10px;
  letter-spacing: 0.02em;
}

.menu_sub {
  display: block;
  font-size: 12px;
  color: #8A7868;
  font-weight: 400;
  margin-top: 3px;
  letter-spacing: 0.02em;
}

/* FAQ（MENUページ） */
.faq_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq_item {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #F0DEC6;
  box-shadow: 0 4px 18px rgba(196, 128, 66, 0.1);
  padding: 0 24px;
}
.faq_item[open] .faq_q {
  color: #753d19;
}
.faq_item[open] .faq_icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq_q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  transition: color 0.25s ease;
}
.faq_q::-webkit-details-marker {
  display: none;
}
@media (hover: hover) {
  .faq_q:hover {
    color: #753d19;
  }
}

.faq_icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.faq_icon::before, .faq_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #753d19;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq_icon::before {
  width: 16px;
  height: 1.5px;
}
.faq_icon::after {
  width: 1.5px;
  height: 16px;
}

.faq_a {
  font-size: 14px;
  color: #8A7868;
  line-height: 2;
  padding: 16px 0 22px;
  border-top: 1px solid #F0DEC6;
}

.menu_img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 64px;
}
.menu_img-row img {
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(196, 128, 66, 0.1);
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

/* ===== STAFFページ ===== */
.staff_section {
  padding: 88px 0;
}

.staff_full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 780px;
  margin: 0 auto;
}

.staff_full-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(196, 128, 66, 0.1);
  border: 1px solid #F0DEC6;
}

.staff_full-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.staff_full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.staff_full-body {
  padding: 28px 24px;
}

.staff_full-role {
  font-size: 11px;
  color: #8A7868;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.staff_full-name {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.staff_full-career {
  font-size: 12px;
  color: #E5A06B;
  margin-bottom: 16px;
}

.staff_full-comment {
  font-size: 15px;
  color: #8A7868;
  line-height: 2.1;
}

.staff_full-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.staff_tag {
  background: #FAF0DF;
  color: #753d19;
  font-size: 11px;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* ===== GALLERYページ ===== */
.gallery_section {
  padding: 88px 0;
}

.gallery_full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery_full-item {
  overflow: hidden;
  cursor: pointer;
}
.gallery_full-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
@media (hover: hover) {
  .gallery_full-item:hover img {
    transform: scale(1.05);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
}

.lightbox_close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #FFFFFF;
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ===== ACCESSページ ===== */
.access_section {
  padding: 88px 0;
}

.access_inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 52px;
  align-items: start;
}

.access_map iframe {
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(196, 128, 66, 0.1);
}

.access_dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 24px;
}
.access_dl dt {
  font-size: 13px;
  color: #8A7868;
  white-space: nowrap;
  padding-top: 2px;
  letter-spacing: 0.04em;
}
.access_dl dd {
  font-size: 15px;
  line-height: 1.7;
}
.access_dl dd a {
  color: #753d19;
}

.access_btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.access_map-btn {
  margin-top: 12px;
}

.access_note {
  font-size: 12px;
  color: #8A7868;
}

/* 道順（ACCESSページ） */
.direction_box {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 18px rgba(196, 128, 66, 0.1);
}

.direction_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.direction_item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.direction_num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #753d19;
  color: #FFFFFF;
  font-size: 13px;
}

.direction_title {
  font-weight: 500;
  margin-bottom: 4px;
}

.direction_text {
  font-size: 14px;
  color: #8A7868;
}

/* ===== CONTACTページ ===== */
.contact_section {
  padding: 88px 0;
}

.contact_inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  max-width: 880px;
  margin: 0 auto;
}

.contact_tel-card {
  background: #753d19;
  padding: 40px 32px;
  border-radius: 12px;
  text-align: center;
  color: #FFFFFF;
}

.contact_tel-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.contact_tel-num {
  display: block;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.contact_tel-hours {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  display: block;
  margin-bottom: 16px;
}

.contact_tel-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
}

.contact_hours {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
}

.contact_hours-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.contact_hours-table {
  width: 100%;
  font-size: 13px;
  border-collapse: collapse;
}
.contact_hours-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.contact_hours-table tr:last-child {
  border-bottom: none;
}
.contact_hours-table td {
  padding: 8px 0;
}
.contact_hours-table td:first-child {
  color: rgba(255, 255, 255, 0.7);
}
.contact_hours-table td:last-child {
  text-align: right;
}
.contact_hours-table .is-closed td {
  color: rgba(255, 255, 255, 0.5);
}

.contact_hours-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
  line-height: 1.7;
}

.contact_form-title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.form_group {
  margin-bottom: 20px;
}
.form_group label {
  display: block;
  font-size: 13px;
  color: #4A3F35;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.form_group input,
.form_group select,
.form_group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #F0DEC6;
  border-radius: 12px;
  font-size: 15px;
  color: #4A3F35;
  background: #FFFFFF;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
}
.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {
  outline: none;
  border-color: #E5A06B;
  box-shadow: 0 0 0 3px rgba(168, 139, 121, 0.15);
}
.form_group textarea {
  resize: vertical;
}

.required {
  background: #753d19;
  color: #FFFFFF;
  font-size: 10px;
  padding: 1px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}

.form_note {
  font-size: 12px;
  color: #8A7868;
  margin-bottom: 20px;
  line-height: 1.8;
}

.form_submit-msg {
  text-align: center;
  padding: 32px;
  color: #753d19;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  display: none;
}

/* ===== お知らせ アーカイブ ===== */
.info_archive {
  padding: 88px 0;
}

.info_list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #F0DEC6;
}

.info_item {
  border-bottom: 1px solid #F0DEC6;
}

.info_item-link {
  display: block;
  padding: 24px 8px;
  transition: background 0.25s ease;
  text-decoration: none;
  color: #4A3F35;
}
@media (hover: hover) {
  .info_item-link:hover {
    background: #FAF0DF;
  }
}

.info_item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.info_item-date {
  font-size: 12px;
  color: #8A7868;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.info_item-tag {
  background: #FAF0DF;
  color: #753d19;
  font-size: 11px;
  padding: 2px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border: 1px solid #F0DEC6;
}

.info_item-title {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}
.info_item-link:hover .info_item-title {
  color: #753d19;
}

.info_item-excerpt {
  font-size: 13px;
  color: #8A7868;
  line-height: 1.8;
  margin-top: 6px;
}
.info_item-excerpt p {
  margin: 0;
}

.info_empty {
  color: #8A7868;
  font-size: 15px;
  padding: 48px 0;
  text-align: center;
}

/* ===== お知らせ 詳細 ===== */
.info_single {
  padding: 80px 0 100px;
}

.info_article {
  max-width: 760px;
  margin: 0 auto 64px;
}

.info_article-head {
  padding-bottom: 28px;
  border-bottom: 2px solid #F0DEC6;
  margin-bottom: 40px;
}

.info_article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.info_article-title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  line-height: 1.65;
  color: #4A3F35;
}

.info_article-body {
  font-size: 15px;
  line-height: 2;
  color: #4A3F35;
}
.info_article-body p {
  margin-bottom: 1.6em;
}
.info_article-body h2 {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin: 2em 0 0.8em;
  padding-left: 12px;
  border-left: 3px solid #753d19;
}
.info_article-body h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 1.6em 0 0.6em;
}
.info_article-body a {
  color: #753d19;
  text-decoration: underline;
}
.info_article-body ul, .info_article-body ol {
  padding-left: 1.5em;
  margin-bottom: 1.6em;
}
.info_article-body li {
  margin-bottom: 0.4em;
}
.info_article-body img {
  max-width: 100%;
  border-radius: 12px;
  margin: 8px 0;
}

/* 前後ナビ */
.info_nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 40px;
  border-top: 1px solid #F0DEC6;
  padding-top: 32px;
}
.info_nav a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #4A3F35;
  text-decoration: none;
  transition: color 0.25s ease;
}
@media (hover: hover) {
  .info_nav a:hover {
    color: #753d19;
  }
}

.info_nav-label {
  font-size: 12px;
  color: #8A7868;
  letter-spacing: 0.04em;
}

.info_nav-ptitle {
  font-size: 14px;
  line-height: 1.6;
}

.info_nav-next {
  text-align: right;
}

.info_back {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .info_nav {
    grid-template-columns: 1fr;
  }
  .info_nav-next {
    text-align: left;
  }
}
/* ===== ステップインジケーター（共通） ===== */
.contact_steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 48px;
}

.contact_step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 72px;
  text-align: center;
}

.contact_step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #F0DEC6;
  background: #FFFFFF;
  color: #8A7868;
  font-size: 12px;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.contact_step.is-active .contact_step-num {
  background: #753d19;
  border-color: #753d19;
  color: #FFFFFF;
}
.contact_step.is-done .contact_step-num {
  background: #E5A06B;
  border-color: #E5A06B;
  color: #FFFFFF;
}

.contact_step-label {
  font-size: 11px;
  color: #8A7868;
  letter-spacing: 0.06em;
}
.contact_step.is-active .contact_step-label {
  color: #753d19;
  font-weight: 500;
}
.contact_step.is-done .contact_step-label {
  color: #E5A06B;
}

.contact_step-line {
  flex-shrink: 0;
  width: 48px;
  height: 1px;
  background: #F0DEC6;
  margin-top: 18px;
}

/* ===== 確認画面 ===== */
.confirm_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 14px;
  border: 1px solid #F0DEC6;
  border-radius: 12px;
  overflow: hidden;
}
.confirm_table th, .confirm_table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #F0DEC6;
  vertical-align: top;
  line-height: 1.8;
}
.confirm_table tr:last-child th,
.confirm_table tr:last-child td {
  border-bottom: none;
}
.confirm_table th {
  width: 130px;
  color: #8A7868;
  font-weight: 400;
  white-space: nowrap;
  background: #FAF0DF;
  font-size: 13px;
}
.confirm_table td {
  color: #4A3F35;
}

.confirm_actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
@media screen and (max-width: 574px) {
  .confirm_actions {
    flex-direction: column-reverse;
  }
}

/* ===== 完了ページ ===== */
.complete_section {
  padding: 80px 0 100px;
}

.complete_inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.complete_icon {
  color: #753d19;
  margin-bottom: 24px;
}
.complete_icon svg {
  width: 56px;
  height: 56px;
}

.complete_title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 500;
  margin-bottom: 20px;
  color: #4A3F35;
}

.complete_lead {
  font-size: 15px;
  color: #8A7868;
  line-height: 2;
  margin-bottom: 24px;
}

.complete_note {
  font-size: 13px;
  color: #8A7868;
  line-height: 2;
  margin-bottom: 40px;
  padding: 20px;
  background: #FAF0DF;
  border-radius: 12px;
  text-align: left;
}

.complete_tel {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #753d19;
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.complete_btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SERVICESページ ===== */
.services_section {
  padding: 88px 0;
}

.services_grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 64px;
}

.service_card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.service_card:nth-child(even) {
  grid-template-columns: 1.4fr 1fr;
}
.service_card:nth-child(even) .service_card-visual {
  order: 2;
}

.service_card-visual {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 18px rgba(196, 128, 66, 0.1);
}
.service_card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service_card-body {
  padding: 4px 0;
}

.service_card-num {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 11px;
  color: #8A7868;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.service_card-title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.4;
}

.service_card-lead {
  font-size: 15px;
  color: #8A7868;
  line-height: 2.1;
  margin-bottom: 24px;
}

.service_card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  background: #FAF0DF;
  border-radius: 12px;
  border-left: 3px solid #753d19;
  margin-bottom: 16px;
}

.service_card-list-item {
  font-size: 14px;
  color: #4A3F35;
  line-height: 1.7;
  display: flex;
  gap: 10px;
}
.service_card-list-item::before {
  content: "✓";
  color: #753d19;
  flex-shrink: 0;
  font-weight: 500;
}

.service_card-note {
  font-size: 12px;
  color: #8A7868;
  line-height: 1.9;
}
.service_card-note a {
  color: #753d19;
}

.service_badge {
  display: inline-block;
  background: #753d19;
  color: #FFFFFF;
  font-size: 11px;
  padding: 3px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

/* ===== おすすめメニュー（MENUページ） ===== */
.osusume_section {
  padding: 88px 0;
}

.osusume_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.osusume_card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(196, 128, 66, 0.1);
  border: 1px solid #F0DEC6;
  overflow: hidden;
}

.osusume_card-header {
  background: #753d19;
  padding: 24px 28px;
}

.osusume_card-num {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

.osusume_card-title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  margin-bottom: 6px;
  color: #FFFFFF;
}

.osusume_card-price {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.osusume_card-body {
  padding: 24px 28px;
}

.osusume_card-catch {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #753d19;
  margin-bottom: 12px;
}

.osusume_card-desc {
  font-size: 14px;
  color: #8A7868;
  line-height: 1.9;
  margin-bottom: 16px;
}

.osusume_card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.osusume_card-tag {
  background: #FAF0DF;
  color: #753d19;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

/* ===== 下層ページ レスポンシブ ===== */
@media screen and (max-width: 991px) {
  .about_story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .menu_img-row {
    grid-template-columns: 1fr 1fr;
  }
  .menu_img-row > *:last-child {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .values_grid {
    grid-template-columns: 1fr;
  }
  .staff_full-grid {
    grid-template-columns: 1fr;
  }
  .staff_full-img {
    aspect-ratio: 3/2;
  }
  .gallery_full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .access_inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact_inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service_card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service_card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .service_card:nth-child(even) .service_card-visual {
    order: 0;
  }
  .osusume_grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 574px) {
  .gallery_full-grid {
    grid-template-columns: 1fr;
  }
  .menu_img-row {
    grid-template-columns: 1fr;
  }
}