:root {
  --navy: #1a3a5c;
  --blue: #2a7abf;
  --blue-dark: #1f7fe0;
  --light-blue: #e8f3fb;
  --mid-blue: #b8d8f0;
  --soft-blue: #d4eaf8;
  --white: #ffffff;
  --off-white: #f6fafc;
  --gray: #6b7c93;
  --light-gray: #f0f4f8;
  --text: #1a2e42;
  --text-light: #5a7080;
  --key: #e8734a;
  --key-light: #fdf0eb;
  --key-dark: #c45a33;
  --green: #2a9e75;
  --green-light: #e0f5ec;
  --font: 'Zen Maru Gothic', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(26, 58, 92, 0.08);
  --shadow-lg: 0 8px 48px rgba(26, 58, 92, 0.14);
  --max-w: 1280px;
  --px: 40px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  font-size: 16px;
}
a {
  text-decoration: none;
  color: inherit;
}
/* 全imgのベースリセット */
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.bg-img {
  background: url('../img/bg-blue.webp') center top / cover no-repeat;
}.text-white {
  color: #fff !important;
}
/* =====================
   HEADER
===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mid-blue);
  box-shadow: 0 2px 16px rgba(26, 58, 92, 0.06);
  width: 100%;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
  width: 100%;
  height: 72px;
  gap: 16px;
}
.logo a{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-text .ja {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  display: block;
  line-height: 1.2;
}
.logo-text .en {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.14em;
  display: block;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-tel .label {
  font-size: 12px;
  color: var(--gray);
  display: block;
  text-align: right;
}
.header-tel .num {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.06em;
  line-height: 1;
}
.btn-reserve {
  background: var(--key);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-reserve:hover {
  background: var(--key-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 115, 74, 0.3);
}
/* =====================
   PC GNAV + DROPDOWN
===================== */
.gnav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}
.gnav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 72px;
}
.gnav-item:first-child {}
.gnav-item > a {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  padding: 0 14px;
  transition: color 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.gnav-item > a:hover {
  color: var(--key);
}
.gnav-item.has-dropdown > a::after {
  content: '▾';
  font-size: 10px;
  transition: transform 0.2s;
}
.gnav-item.has-dropdown:hover > a::after {
  transform: rotate(180deg);
}
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--mid-blue);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  z-index: 300;
  padding: 8px 0;
}
.gnav-item.has-dropdown:hover .dropdown {
  display: block;
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.dropdown a:hover {
  background: var(--light-blue);
  color: var(--key);
}
/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* =====================
   SP DRAWER MENU
===================== */
.sp-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 190;
  overflow-y: auto;
  padding: 80px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sp-nav.open {
  transform: translateX(0);
}
.sp-nav-item {
  border-bottom: 1px solid var(--light-blue);
}
.sp-nav-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.sp-nav-item > a .sp-arrow {
  font-size: 13px;
  color: var(--gray);
  transition: transform 0.2s;
}
.sp-nav-item.open > a .sp-arrow {
  transform: rotate(90deg);
}
.sp-dropdown {
  display: none;
  padding: 4px 0 12px 16px;
}
.sp-nav-item.open .sp-dropdown {
  display: block;
}
.sp-dropdown a {
  display: block;
  padding: 10px 8px;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
  border-bottom: 1px solid var(--light-blue);
}
.sp-dropdown a:last-child {
  border-bottom: none;
}
.sp-nav-reserve {
  margin-top: 24px;
  background: var(--key);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
}
.sp-tel {
  text-align: center;
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}
.sp-tel small {
  display: block;
  font-size: 13px;
  color: var(--gray);
  font-weight: 400;
  margin-bottom: 4px;
}
/* =====================
   HERO
===================== */
.hero {
  margin-top: 72px;
  position: relative;
  height: 680px;
  overflow: hidden;
}
.hero-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  background: #fff;
}
.hero-placeholder {
  width: 56%;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}.hero-deco-text {
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-55%);
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 900;
  font-style: italic;
  color: var(--key);
  opacity: 0.07;
  line-height: 1.15;
  letter-spacing: -0.02em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  user-select: none;
}

/* コンテンツが透かし文字より前面に来るよう */
.hero-eyebrow,
.hero-catch,
.hero-sub,
.hero-btns {
  position: relative;
  z-index: 1;
}
.hero-content {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 60px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--key);
  font-size: 13px;
  font-weight: 700;
  padding: 0;
  border-radius: 0;
  margin-bottom: 20px;
  width: fit-content;
}
.hero-catch {
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.hero-sub {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.9;
}
.hero-btns {
  display: flex;
  gap: 14px;
}
.btn-primary {
  background: var(--key);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--key-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 115, 74, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 40px;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(50, 150, 250, 0.3);
}
/* NEWS */
.news-bar {
  background: var(--navy);
  border-bottom: 1px solid var(--mid-blue);
  padding: 32px var(--px);
  width: 100%;
}
.news-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.news-tag {
  background: var(--key);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.news-text {
  font-size: 14px;
  color: var(--white);
  flex: 1;
}
.news-more {
  font-size: 13px;
  color: var(--blue);
  font-weight: 700;
  white-space: nowrap;
}
/* SECTION */
.section {
  padding: 120px var(--px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-bg-gray {
  background: var(--off-white);
}
.section-bg-blue {
  background: var(--blue);background: #92c8f7;
background: linear-gradient(321deg, rgba(146, 200, 247, 1) 0%, rgba(66, 143, 212, 1) 53%, rgba(42, 122, 191, 1) 89%);
}.section-bg-navy {
  background: var(--navy);
}
.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--key);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.section-sub {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 52px;
}
/* =====================
   ABOUT
===================== */
.intro-flex {
  display: flex;
  gap: 72px;
  align-items: center;
}
.intro-img {
  width: 48%;
  flex-shrink: 0;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
}
.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.intro-lead {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 22px;
}
.intro-body {
  font-size: 15px;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 30px;
}
.link-arrow {
  font-size: 14px;
  color: var(--key);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.link-arrow:hover {
  gap: 12px;
}
.link-arrow::after {
  content: '→';
}
/* =====================
   GALLERY
===================== */
.gallery-wrap {
  overflow: hidden;
  padding: 100px 0 100px 50px;
  
}
.gallery-header {
  padding: 0 var(--px);
  max-width: var(--max-w);
  margin: 0 auto 36px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.gallery-en {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--key);
  text-transform: uppercase;
}
.gallery-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
}
.gallery-track {
  display: flex;
  gap: 50px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar {
  display: none;
}
.gallery-slide {
  flex-shrink: 0;
  width: calc((100vw - 40px) / 3);
  min-width: 240px;
  aspect-ratio: 5 / 3.4;
  border-radius: 20px;
  scroll-snap-align: start;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #b0cce0, #88b4cc);
}
.gallery-slide:first-child {
  margin-left: var(--px);
}
.gallery-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.gallery-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 58, 92, 0.5) 0%, transparent 55%);
  z-index: 1;
}
.gallery-slide span {
  position: relative;
  z-index: 2;
}
.gallery-slide:nth-child(2) {
  background: linear-gradient(160deg, #a8c8e0, #7ab0d0);
}
.gallery-slide:nth-child(3) {
  background: linear-gradient(160deg, #90b8d0, #68a0c0);
}
.gallery-slide:nth-child(4) {
  background: linear-gradient(160deg, #a0c4dc, #80b0cc);
}
.gallery-slide:nth-child(5) {
  background: linear-gradient(160deg, #b8d0e4, #98c0d8);
}
.gallery-slide:nth-child(6) {
  background: linear-gradient(160deg, #88b8d4, #60a0c0);
}
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mid-blue);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.gallery-dot.active {
  background: var(--key);
  width: 28px;
  border-radius: 4px;
}
/* =====================
   TREATMENT
===================== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.menu-card {
  background: var(--white);
  border: 1px solid var(--light-blue);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.menu-img {}
.menu-img img {
  width: 140px;
  margin: 20px auto;
}
.menu-card:hover .menu-img img {
  transform: scale(1.04);
}
.menu-body {
  padding: 0 40px 30px;
}
.menu-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.menu-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--key-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.menu-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}
.menu-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}
.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.badge-hoken {
  background: var(--light-blue);
  color: #0a5c9a;
}
.badge-jiyu {
  background: #fff3dc;
  color: #8a6000;
}
.badge-both {
  background: var(--green-light);
  color: #0a6040;
}
/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  border-top: 4px solid var(--key);
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.feature-num {
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}
.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.feature-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}
/* =====================
   STAFF
===================== */
.staff-wrap {
  overflow: hidden;
  padding: 120px 0;
}
.staff-header {
  padding: 0 var(--px);
  max-width: var(--max-w);
  margin: 0 auto 40px;
}
.staff-carousel-outer {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  overflow: hidden;
}
.staff-track {
  display: flex;
  gap: 36px;
}
.staff-card {
  flex-shrink: 0;
  width: calc((1200px - 80px - 72px) / 4);
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-blue);
}
.staff-card:hover {
  box-shadow: var(--shadow-lg);
}
.staff-img {
  height: 320px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--soft-blue), var(--mid-blue));
}
.staff-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.staff-card:hover .staff-img img {
  transform: scale(1.04);
}
.staff-body {
  padding: 20px;
}
.staff-role {
  font-size: 11px;
  color: var(--key);
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}
.staff-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.staff-spec {
  font-size: 13px;
  color: var(--text-light);
}
/* =====================
   OVERVIEW / ACCESS
===================== */
.overview-grid {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.overview-left {
  flex: 1;
}
.overview-name-en {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}
.overview-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.overview-logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.overview-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
}
.overview-access {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--mid-blue);
}
.hours-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 18px;
}
.hours-table th {
  background: var(--light-blue);
  color: var(--blue);
  padding: 9px 7px;
  border: 1px solid var(--mid-blue);
  text-align: center;
  font-weight: 700;
}
.hours-table td {
  padding: 9px 7px;
  border: 1px solid var(--light-blue);
  text-align: center;
  color: var(--text-light);
}
.hours-table td.dot {
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
}
.hours-table td.off {
  color: var(--gray);
}
.hours-note {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.9;
}
.overview-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ov-btn {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid var(--key);
}
.ov-btn-primary {
  background: var(--key);
  color: var(--white);
}
.ov-btn-primary:hover {
  background: var(--key-dark);
  border-color: var(--key-dark);
}
.ov-btn-outline {
  background: transparent;
  color: var(--key);
}
.ov-btn-outline:hover {
  background: var(--key);
  color: var(--white);
}
.overview-right {
  width: 44%;
  flex-shrink: 0;
}
.map-block {
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 22px;
  background: linear-gradient(160deg, #d0e8d0, #a8c8a8);
}
.map-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.parking-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.parking-row {
  font-size: 14px;
  color: var(--text-light);
  padding: 7px 0;
  border-bottom: 1px solid var(--light-blue);
}
.tel-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 18px;
}
.tel-label {
  font-size: 13px;
  color: var(--text-light);
}
.tel-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
}
.route-link {
  font-size: 13px;
  color: var(--blue);
  font-weight: 700;
  margin-left: auto;
}
.overview-note {
  font-size: 13px;
  color: var(--gray);
  margin-top: 8px;
}
/* CTA */
.cta-band {
  background: url('../img/bg-cta.webp')  center / cover no-repeat;
  padding: 120px var(--px);
  text-align: center;
}
.cta-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-btn-key {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 40px;
  background: var(--key);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.cta-btn-key:hover {
  background: var(--key-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 115, 74, 0.35);
}
.cta-btn-blue {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 40px;
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: all 0.2s;
}

.cta-btn-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(50, 150, 250, 0.3);
}
/* FOOTER */
.footer {
  
  padding: 120px var(--px) 36px;
  border-top: 1px solid var(--mid-blue);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 120px;
}
.footer-logo-row a{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.footer-logo-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: 0.1em;
}
.footer-item {
  font-size: 13px;
  color: var(--text-light);
  padding: 4px 0;
  line-height: 1.7;
}
.footer-item a {
  color: var(--text-light);
  transition: color 0.2s;
}
.footer-item a:hover {
  color: var(--key);
}
.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--mid-blue);
  padding-top: 28px;
}
.footer-copy {
  font-size: 13px;
  color: var(--gray);
}
.footer-sns {
  display: flex;
  gap: 12px;
}
.sns-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  cursor: pointer;
  transition: transform 0.2s;
}
.sns-btn:hover {
  transform: scale(1.12);
}
.sns-btn img {
  width: 30px;
  height: auto;
}
.sns-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.sns-line {
  background: #06c755;
}
/* =====================
   下層ページ 共通スタイル
===================== */

/* ページティーザー */
.page-teaser {
  margin-top: 96px;
  background: var(--white);
  padding: 56px var(--px) 0;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.page-teaser-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 54px;
}
.page-teaser-body { flex-shrink: 0; }
.page-teaser-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.page-teaser-en {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--blue);
  text-transform: uppercase;
  display: block;
}
.page-teaser-img {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}
.page-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* パンくず */
.breadcrumb { text-align: right; }
.breadcrumb-inner { display: flex; align-items: center; gap: 4px; }
.breadcrumb-item { font-size: 12px; color: var(--gray); display: flex; align-items: center; }
.breadcrumb-item a { color: var(--gray); font-weight: 500; transition: color 0.2s; }
.breadcrumb-item a:hover { color: var(--key); }
.breadcrumb-item.current { color: var(--text-light); }
.breadcrumb-sep { color: var(--gray); font-size: 12px; margin: 0 6px; }

/* ページコンテンツ共通 */
.page-content { background: var(--white); }
.page-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px var(--px);
}
.page-section h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  padding-left: 18px;
  border-left: 4px solid var(--key);
  line-height: 1.5;
  margin-bottom: 24px;
}
.page-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  margin-top: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--mid-blue);
}
.page-section p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 20px;
}
.page-col-main { width: 100%; }

/* 注意書き */
.page-note {
  font-size: 14px;
  color: var(--gray);
  background: var(--off-white);
  border-left: 3px solid var(--mid-blue);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin-top: 24px;
  line-height: 1.8;
}

/* ポイントボックス */
.point-box {
  background: var(--key-light);
  border: 1px solid rgba(232,115,74,0.2);
  border-radius: 12px;
  padding: 22px 28px;
  margin-bottom: 24px;
}
.point-box p { margin-bottom: 0; color: var(--text); font-size: 15px; }
.point-box-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--key);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.point-box-title::before { content: '✔'; font-size: 14px; }

/* リード：左画像＋右テキスト */
.intro-row {
  display: flex;
  gap: 56px;
  align-items: center;
}
.intro-row-img {
  width: 44%;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
}
.intro-row-img img { width: 100%; height: 100%; object-fit: cover; }
.intro-row-body { flex: 1; }
.intro-row-body p { font-size: 15px; color: var(--text-light); line-height: 2; margin-bottom: 16px; }

/* 画像＋テキスト */
.content-with-img {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.content-with-img-body { flex: 1; min-width: 0; }
.content-with-img-side {
  width: 360px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
}
.content-with-img-side img { width: 100%; height: auto; display: block; }

/* フローリスト */
.flow-list {
  counter-reset: flow;
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.flow-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  counter-increment: flow;
  background: var(--white);
  border: 1px solid var(--mid-blue);
  border-radius: 10px;
  padding: 16px 20px;
}
.flow-list li::before {
  content: counter(flow);
  min-width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.flow-list li span { font-size: 15px; color: var(--text); line-height: 1.8; }
.flow-list li span strong { color: var(--navy); font-weight: 700; display: block; margin-bottom: 2px; }

/* チェックリスト */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}
.check-list li::before {
  content: '✔';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* NGリスト */
.ng-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ng-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}
.ng-list li::before {
  content: '✕';
  color: #c0392b;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* バッジ */
.badge-hoken { background: var(--light-blue); color: #0a5c9a; font-size: 13px; font-weight: 700; padding: 4px 12px; border-radius: 20px; display: inline-block; white-space: nowrap; }
.badge-jiyu  { background: #fff3dc; color: #8a6000; font-size: 13px; font-weight: 700; padding: 4px 12px; border-radius: 20px; display: inline-block; white-space: nowrap;}

/* 下層ページ RESPONSIVE */
@media (max-width: 1024px) {
  .page-teaser { padding: 40px var(--px) 0; }
  .page-teaser-img { height: 360px; }
  .page-section { padding: 80px var(--px); }
  .content-with-img { gap: 32px; }
  .content-with-img-side { width: 220px; }
  .intro-row { gap: 40px; }
}
@media (max-width: 767px) {
  .page-teaser { padding: 28px var(--px) 0; }
  .page-teaser-head { align-items: flex-start; gap: 12px; flex-direction: column; }
  .page-teaser-title { font-size: 26px; }
  .page-teaser-img { height: 300px; border-radius: 14px; }
  .page-section { padding: 64px var(--px); }
  .page-section h2 { font-size: 20px; }
  .page-section h3 { font-size: 16px; }
  .intro-row { flex-direction: column; gap: 24px; }
  .intro-row-reverse  { flex-direction: column-reverse;  }
  .intro-row-img { width: 100%; height: 220px; }
  .content-with-img { flex-direction: column; }
  .content-with-img-side { width: 100%; }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}
/* =====================
   TABLET (〜1024px)
===================== */
@media (max-width: 1024px) {
  :root {
    --px: 24px;
  }
  .gnav {
    display: none;
  }
  .header-tel {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .sp-nav {
    display: block;
  }
  .header-inner {
    align-items: center;
  }
  .hero {
    height: 480px;
  }
  .hero-catch {
    font-size: 28px;
  }
  .hero-sub {
    font-size: 13px;
    margin-bottom: 24px;
  }
  .hero-content {
    width: 60%;
    padding: 40px 32px 40px var(--px);
  }
  .hero-eyebrow {
    font-size: 11px;
  }
  .intro-flex {
    gap: 40px;
  }
  .intro-img {
    height: 280px;
  }
  .intro-lead {
    font-size: 20px;
  }
  .gallery-slide {
    width: calc((100vw - 32px) / 2);
    height: 220px;
  }
  .gallery-wrap {
    padding: 72px 0;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section {
    padding: 80px var(--px);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .staff-card {
    width: calc((100vw - 96px) / 3);
  }
  .staff-wrap {
    padding: 80px 0;
  }
  .staff-header {
    padding: 0 var(--px);
  }
  .staff-carousel-outer {
    padding: 0 var(--px);
  }
  .overview-grid {
    flex-direction: column;
    gap: 40px;
  }
  .overview-right {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer {
    padding: 56px var(--px) 32px;
  }
  .cta-band {
    padding: 80px var(--px);
  }
  .cta-title {
    font-size: 26px;
  }
}
/* =====================
   MOBILE (〜767px)
===================== */
@media (max-width: 767px) {
  :root {
    --px: 20px;
  }
  .logo-text .ja {
    font-size: 17px;
  }
  .logo-icon {
    width: 36px;
    height: 36px;
  }
  .btn-reserve {
    font-size: 13px;
    padding: 8px 14px;
  }
  .hero {
    margin-top: 72px;
    height: auto;
    min-height: auto;
  }
  .hero-bg {
    flex-direction: column;
    position: static;
  }
  .hero-placeholder {
    width: 100%;
    height: 240px;
  }
  .hero-content {
    position: static;
    width: 100%;
    padding: 32px var(--px) 40px;
    
  }
  .hero-catch {
    font-size: 24px;
  }
  .hero-sub {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }
  .btn-primary, .btn-outline {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 14px;
  }
  .news-bar {
    padding: 14px var(--px);
  }
  .news-text {
    font-size: 13px;
  }
  .news-more {
    display: none;
  }
  .section {
    padding: 64px var(--px);
  }
  .section-title {
    font-size: 22px;
  }
  .section-sub {
    font-size: 13px;
    margin-bottom: 32px;
  }
  .intro-flex {
    flex-direction: column;
    gap: 24px;
  }
  .intro-img {
    width: 100%;
    height: 220px;
  }
  .intro-lead {
    font-size: 18px;
  }
  .intro-body {
    font-size: 14px;
  }
  .gallery-slide {
    width: calc(100vw - 48px);
    height: 240px;
  }.gallery-track {
    margin-left: 20px;
    gap: 20px;
    
}
  .gallery-header {
    padding: 0 var(--px);
  }
  .gallery-title {
    font-size: 22px;
  }
  .gallery-wrap {
    padding: 56px 0;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-card:hover {
    transform: none;
  }
  .menu-img {
    height: 120px;
  }.menu-img img {
    width: 120px;
    margin: 10px auto 20px;
}.menu-body {
    padding: 0 30px 20px;
}
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-card {
    padding: 28px 20px;
  }
  .feature-num {
    font-size: 36px;
  }
  .feature-card:hover {
    transform: none;
  }
  .staff-card {
    width: calc(100vw - 80px);
  }
  .staff-img {
    height: 260px;
  }
  .staff-wrap {
    padding: 64px 0;
  }
  .staff-header {
    padding: 0 var(--px);
  }
  .staff-carousel-outer {
    padding: 0 var(--px);
  }
  .hours-table {
    font-size: 11px;
  }
  .hours-table th, .hours-table td {
    padding: 6px 4px;
  }
  .tel-num {
    font-size: 22px;
  }
  .overview-btns {
    flex-direction: column;
  }
  .ov-btn {
    width: 100%;
    text-align: center;
  }
  .map-block {
    height: 220px;
  }
  .cta-band {
    padding: 64px var(--px);
  }
  .cta-title {
    font-size: 22px;
  }
  .cta-sub {
    font-size: 13px;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-btn-key, .cta-btn-outline {
    width: 100%;
    max-width: 320px;
    padding: 16px;
    font-size: 14px;
  }.cta-btn-blue {
    
    font-size: 16px;
    width: 100%;
        max-width: 320px;
}
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer {
    padding: 48px var(--px) 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}