/* ============================================
   DOG SALON はる — 共通スタイルシート
   ============================================ */

:root {
  --orange: #f5862e;
  /* --orange-dark: #d96f1c; */
  --orange-dark: #ea6f0b;
  --orange-pale: #ffe9d2;
  --orange-border: #ffe3c9;
  --blue: #4a90d9;
  --blue-pale: #dcebfa;
  --brown: #4a3628;
  --muted: #7a6a5c;
  --muted-light: #9a8a7a;
  --cream: #faf7f0;
  --cream-light: #fff7ef;
  --field-border: #f0e4d4;
  --field-bg: #fffdfa;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Google fonts（ローカル配置） */
@font-face {
  font-family: "MPLUSRounded1c";
  src: url(../fonts/MPLUSRounded1c-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: "MPLUSRounded1c";
  src: url(../fonts/MPLUSRounded1c-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: "MPLUSRounded1c";
  src: url(../fonts/MPLUSRounded1c-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: "MPLUSRounded1c";
  src: url(../fonts/MPLUSRounded1c-ExtraBold.ttf);
  font-weight: 900;
}

body {
  font-family: "MPLUSRounded1c", sans-serif;
  background: #fff;
  color: var(--brown);
}

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

a {
  color: var(--brown);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--orange);
}

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

/* ---------- header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(16px, 4vw, 44px);
  z-index: 100;
}

.site-header--overlay {
  background: transparent;
}

/* 下層ページ用(固定ヘッダー) */
.site-header--fixed {
  position: sticky;
  top: 0;
  background: rgba(74, 54, 40, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.logo {
  width: 180px;
}

@media (max-width: 1024px) {
  .logo {
    width: 140px;
  }
}

@media (max-width: 680px) {
  .logo {
  width: 100px;
}
}

.nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  font-weight: 700;
}

.nav a.active {
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 3px;
}

.nav .btn-reserve {
  background: var(--orange);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
}

.nav .btn-reserve:hover {
  background: var(--orange-dark);
  color: #fff;
}

/* hamburger (CSSのみ・チェックボックス方式) */
.nav-check {
  display: none;
}

.nav-toggle {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
    border-radius: 12px;
    background: var(--cream-light);
  }

  .nav-toggle .bar {
    display: block;
    height: 3px;
    border-radius: 2px;
    background: var(--orange);
    transition: transform .25s, opacity .2s;
  }

  .nav-check:checked~.nav-toggle .bar:nth-child(2) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-check:checked~.nav-toggle .bar:nth-child(3) {
    opacity: 0;
  }

  .nav-check:checked~.nav-toggle .bar:nth-child(4) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 8px 20px 20px;
    box-shadow: 0 16px 32px rgba(74, 54, 40, .12);
  }

  .nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--field-border);
    font-size: 15px;
  }

  .nav a.active {
    border-bottom: 1px solid var(--field-border);
    color: var(--orange);
  }

  .nav .btn-reserve {
    margin-top: 16px;
    text-align: center;
    border-bottom: none;
    padding: 14px;
  }

  .nav-check:checked~.nav {
    display: flex;
  }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1.3px;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  padding: 15px 40px;
  font-size: 15px;
}

.btn--primary:hover {
  background: var(--orange-dark);
  color: #fff;
}

.btn--ghost-orange {
  background: rgba(255, 255, 255, .9);
  border: 2px solid #f5c9a3;
  color: var(--orange);
  padding: 13px 30px;
  font-size: 15px;
}

.btn--ghost-blue {
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 13px 32px;
  font-size: 15px;
  background: #fff;
}

.btn--ghost-blue:hover {
  background: var(--blue);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--orange);
  padding: 15px 40px;
  font-size: 15px;
  font-weight: 900;
  border: 2px solid var(--orange);
  box-shadow: 0 4px 12px rgba(74, 54, 40, .08);
}

.btn--instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 12px 26px;
  font-size: 13px;
  letter-spacing: normal;
}

.btn--instagram:hover {
  color: #fff;
  opacity: .9;
}

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

.btn-row--center {
  justify-content: center;
}

/* ---------- sections ---------- */
.section {
  padding: clamp(40px, 7vw, 64px) clamp(20px, 5vw, 44px);
}

.section--cream {
  background: var(--cream);
}

.section--tight {
  padding-top: 0;
}

.eyebrow {
  font-weight: 700;
  font-size: 13px;
  color: var(--orange);
  letter-spacing: .15em;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(21px, 3.5vw, 26px);
  font-weight: 900;
  margin-bottom: 12px;
}

.section-lead {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}

.page-hero {
  background: var(--cream);
  padding: clamp(36px, 6vw, 56px) clamp(20px, 5vw, 44px);
}

.page-title {
  font-size: clamp(26px, 5vw, 32px);
  font-weight: 900;
  margin-bottom: 12px;
}

/* ---------- top: hero ---------- */
.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  transition: 1s;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 244, .95) 0%, rgba(255, 250, 244, .78) 42%, rgba(255, 250, 244, 0) 72%);
}

.hero .site-header {
  position: relative;
}

.hero-content {
  position: relative;
  max-width: 540px;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 64px) 64px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: clamp(28px, 5.5vw, 42px);
  line-height: 1.6;
  font-weight: 900;
}

.hero-lead {
  font-size: 15px;
  line-height: 2;
  color: #6d5c4d;
}

@media (max-width: 900px) {
  .hero {
    min-height: 0;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(255, 250, 244, .96) 30%, rgba(255, 250, 244, .65) 100%);
  }
}

/* ---------- top: points ---------- */
.points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.point {
  border-top: 3px solid var(--orange);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.point-no {
  font-weight: 700;
  font-size: 12px;
  color: var(--orange);
  letter-spacing: .1em;
}

.point h3 {
  font-size: 17px;
  font-weight: 900;
}

.point p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}

/* ---------- top: menu ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 26px;
}

.menu-row h3 {
  font-size: 16px;
  font-weight: 900;
}

.menu-row .menu-note {
  font-size: 12px;
  color: var(--muted-light);
  margin-top: 4px;
}

.menu-row .menu-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

.menu-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
}

.text-link {
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.text-link:hover {
  color: var(--orange);
}

.text-link:hover::after {
  transform: scaleX(1);
}

/* ---------- photo strip / gallery ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.sp-only {
  display: none;
}

.strip-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0;
}

/* ---------- before / after ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.ba-card {
  background: var(--cream-light);
  border-radius: 24px;
  padding: 24px;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.ba-shot {
  position: relative;
}

.ba-shot img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
}

.ba-tag {
  position: absolute;
  left: 10px;
  top: 10px;
  font-weight: 700;
  font-size: 11px;
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--brown);
}

.ba-tag--after {
  background: var(--orange);
}

@media (max-width: 600px) {
  .ba-tag {
    left: 6px;
    top: 6px;
    font-size: 9px;
    padding: 3px 7px;
  }
}

.ba-name {
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 700;
}

.ba-note {
  margin-top: 4px;
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--muted-light);
}

/* ---------- service ---------- */
.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.course-card {
  background: var(--cream-light);
  border-radius: 24px;
  overflow: hidden;
}

.course-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.pos-top {
  object-position: center 20%;
}

.course-body {
  padding: 26px 30px 30px;
}

.course-body h2 {
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 10px;
}

.course-body p {
  font-size: 13.5px;
  line-height: 2;
  color: var(--muted);
}

.price-block {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 28px;
  margin-top: 70px;
  position: relative;
  overflow: visible;
  /* はみ出しを許可 */
}

.price-img {
  position: absolute;
  top: -72px;
  left: 5px;
}

.price-img-lg {
  top: -75px;
}

.price-block:last-child {
  margin-bottom: 0;
}

.price-head {
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 900;
}

.price-head--small {
  background: var(--orange);
}

.price-head--medium {
  background: #f5a55e;
}

.price-head--large {
  background: var(--blue);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th {
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted-light);
  padding: 12px 28px;
  border-bottom: 1px solid #f2e8dc;
}

.price-table td {
  font-size: 14px;
  padding: 14px 28px;
  border-bottom: 1px solid #f7f0e6;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table td:first-child {
  font-weight: 700;
}

.price-table .na {
  color: #c9b8a6;
}

.price-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted-light);
}

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

.opt-card {
  border: 2px solid var(--orange-border);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opt-card h3 {
  font-size: 16px;
  font-weight: 900;
}

.opt-card p {
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--muted);
}

.opt-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
}

.opt-card--blue {
  border-color: #d8e8f8;
  background: #fbfdff;
}

.opt-card--blue .opt-price {
  color: var(--blue);
}

.notes-box {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: clamp(28px, 5vw, 36px) clamp(24px, 5vw, 44px);
}

.notes-box h2 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
}

.notes-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notes-box li {
  display: flex;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--muted);
}

.notes-box li::before {
  content: "・";
  color: var(--orange);
  font-weight: 900;
}

/* チワワ */
.chiwa-wrap {
  position: relative;
  display: inline-block;
  width: 140px;
  height: auto;
  flex-shrink: 0;
}

.chiwa-tail {
  position: absolute;
  /* 体画像に合わせて位置調整 */
  right: 4%;
  bottom: 4%;
  transform-origin: bottom left;
  /* しっぽの付け根を軸にする */
  animation: wag 1s ease-in-out infinite;
  z-index: 1;
}

@keyframes wag {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(8deg);
  }
}

.chiwa-body {
  position: relative;
  z-index: 2;
}

.cta--with-mascot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.cta--with-mascot .cta-text {
  text-align: center;
  max-width: 480px;
}

@media (max-width: 640px) {
  .cta--with-mascot {
    flex-direction: column;
    gap: 20px;
  }
}

/* ---------- staff ---------- */
.staff-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.staff-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.staff-photo img {
  width: min(280px, 70vw);
  height: min(280px, 70vw);
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid var(--cream);
}

.staff-role {
  font-weight: 700;
  font-size: 12px;
  color: var(--orange);
  letter-spacing: .15em;
  text-align: center;
}

.staff-name {
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  margin-top: 6px;
}

.staff-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.staff-copy {
  font-size: clamp(19px, 3.5vw, 22px);
  line-height: 1.7;
  font-weight: 900;
}

@media (max-width: 600px) {
  .sp-hidden {
  display: none;
}
}


.staff-text {
  font-size: 14px;
  line-height: 2.2;
  color: var(--muted);
}

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

.cred-card {
  background: var(--cream-light);
  border-radius: 20px;
  padding: 24px 28px;
}

.cred-card h3 {
  font-size: 15px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 12px;
}

.cred-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}

/* ---------- access ---------- */
.access-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
  align-items: stretch;
}

.map-ph {
  border-radius: 24px;
  height: 100%;
}

.map-ph iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 24px;
}

.info-card {
  border: 2px solid var(--orange-border);
  border-radius: 24px;
  overflow: hidden;
}

.info-card-head {
  background: var(--cream-light);
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 900;
  margin: 0;
}

.info-list {
  display: grid;
  grid-template-columns: auto 1fr;
  margin: 0;
}

.info-list dt,
.info-list dd {
  padding: 16px 0;
  font-size: 13.5px;
  line-height: 1.8;
  border-top: 1px solid var(--orange-pale);
}

.info-list dt {
  padding-left: 28px;
  min-width: 85px;
  font-weight: 900;
  color: var(--orange);
}

.info-list dd {
  padding-right: 28px;
  padding-left: 28px;
  margin: 0;
}

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

.way-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.way-icon {
  width: 60px;
  height: 60px;
  padding: 6px;
  border-radius: 16px;
  background: var(--orange-pale);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.way-icon--blue {
  background: var(--blue-pale);
}

.way-card h3 {
  font-size: 16px;
  font-weight: 900;
}

.way-card p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}

/* ---------- contact form ---------- */
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field>label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
}

.tag-req,
.tag-opt {
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.tag-req {
  background: var(--orange);
  color: #fff;
}

.tag-opt {
  background: #e8dccb;
  color: #8a7a68;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
  font-size: 14px;
  padding: 14px 18px;
  border: 2px solid var(--field-border);
  border-radius: 14px;
  background: var(--field-bg);
  color: var(--brown);
  outline: none;
  width: 100%;
}

.form-field textarea {
  line-height: 1.8;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--orange);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #c4b5a5;
}

.form-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--field-border);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 700;
  background: var(--field-bg);
  cursor: pointer;
}

.radio-pill input {
  accent-color: var(--orange);
}

.radio-pill:has(input:checked) {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--cream-light);
}

.form-submit {
  text-align: center;
  margin-top: 8px;
}

.form-submit button {
  background: var(--orange);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 17px clamp(32px, 8vw, 64px);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  /* box-shadow: 0 8px 20px rgba(245, 134, 46, .3); */
}

.form-submit button:hover {
  background: var(--orange-dark);
}

.form-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted-light);
}

.tel-band {
  text-align: center;
}

.tel-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
}

/* .tel-number {
  font-size: clamp(26px, 6vw, 34px);
  font-weight: 700;
  letter-spacing: .03em;
  margin-bottom: 6px;
} */

/* PC: ボタン風の装飾を外し、シンプルなテキスト表示に */
.tel-button {
  font-size: 34px;
  color: #333;
  font-weight: 700;
  text-decoration: none;
  pointer-events: none; /* クリックできないようにする */
  cursor: default;
    letter-spacing: .03em;
  margin-bottom: 6px;
}

@media (min-width: 601px) {
  .pc-hidden {
    display: none;
  }
}

/* スマホ: ボタンとして機能させる */
@media (max-width: 600px) {
  .tel-button {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    pointer-events: auto;
    cursor: pointer;
    white-space: nowrap; /*テキストが折り返されないようにする */
    width: fit-content; /*アイコン+テキストの幅に合わせて自動的に縮む*/
    margin: 0 auto;
  }

  .tel-button img {
  width: 20px;
  height: 20px;
  flex-shrink: 0; /* アイコンが縮まないように */
}

 .tel-button:hover {
    color: #fff; /* オレンジに変わるのを防ぐ */
  }
}


.tel-note {
  font-size: 12.5px;
  color: var(--muted-light);
  margin-top: 10px;
}

/* ---------- cta / footer ---------- */
.cta {
  text-align: center;
}

.cta h2 {
  font-size: clamp(18px, 3.5vw, 26px);
  font-weight: 900;
  margin-bottom: 10px;
}

.cta p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 24px;
}

@media (max-width: 750px) {
  .cta p {
    text-align-last: left;
  }
}

.cta-band {
  background: var(--orange-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 32px;
  padding: clamp(36px, 6vw, 52px) clamp(20px, 5vw, 44px);
}

.cta-band h2 {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 900;
  color: var(--brown);
}

.site-footer {
  background: var(--brown);
  padding: 32px clamp(20px, 5vw, 44px);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.1em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  font-size: 12px;
  font-weight: 700;
}

.footer-nav a {
  color: #cbb9a9;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 12px;
  color: #a08d7c;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {

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

  .staff-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .staff-body {
    width: 100%;
  }

  .points-grid,
  .way-grid,
  .opt-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .sp-only {
    display: block;
  }

  .ba-grid,
  .course-grid {
    grid-template-columns: 1fr;
  }

  .map-ph {
    height: 300px;
  }
}

@media (max-width: 600px) {

  .points-grid,
  .way-grid,
  .opt-grid,
  .gallery-grid,
  .form-2col,
  .cred-grid {
    grid-template-columns: 1fr;
  }

  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .ba-pair {
    gap: 8px;
  }

  .menu-photo {
    height: 220px;
  }

  .price-table th,
  .price-table td {
    padding: 12px 16px;
    font-size: 13px;
  }

  .price-head {
    padding: 12px 16px;
  }

  .info-row {
    flex-direction: column;
    gap: 4px;
    padding: 14px 20px;
  }
}

/* ---------- topへ戻るボタン ---------- */
.btn-totop {
  position: fixed;
  right: 24px;
  bottom: 45px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, visibility .3s;
  z-index: 200;
}

.btn-totop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-totop img {
  width: 70px;
  height: 70px;
  display: block;
}

/* ---------- confirm table ---------- */
.confirm-table {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 30px;
  border-collapse: collapse;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.confirm-table th,
.confirm-table td {
  padding: 16px 24px;
  text-align: left;
  font-size: 13.5px;
  border-bottom: 1px solid var(--field-border);
  vertical-align: top;
}

.confirm-table th {
  width: 32%;
  color: var(--orange);
  font-weight: 900;
  white-space: nowrap;
  background: var(--cream-light);
}

.confirm-table td {
  color: var(--brown);
  line-height: 1.8;
  word-break: break-word;
}

.confirm-table tr:last-child th,
.confirm-table tr:last-child td {
  border-bottom: none;
}