/* ============================================================
   YOSAPARK Milina — Global Stylesheet
   Elegant, warm pink relaxation-salon theme
   ============================================================ */
/* ---------- Design tokens ---------- */ :root {
  --pink-900: #b23568; /* deep rose — readable headings */
  --pink-800: #d94e86;
  --pink-700: #ef6fa2;
  --pink-600: #f890b9; /* primary — base brand color */
  --pink-500: #fba5c7;
  --pink-400: #fcbdd7;
  --pink-300: #fdd4e4;
  --pink-200: #fee7f0;
  --pink-100: #fff4f9;
  --cream: #fffafc;
  --ink: #4a3b41;
  --ink-soft: #7a6a70;
  --gold: #e6b968;
  --white: #ffffff;
  --line: #fddceb;
  --shadow-sm: 0 4px 14px rgba(248, 144, 185, .24);
  --shadow-md: 0 12px 34px rgba(217, 78, 134, .20);
  --shadow-lg: 0 24px 60px rgba(178, 53, 104, .24);
  --radius: 18px;
  --radius-lg: 30px;
  --maxw: 1140px;
  --serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "游明朝", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック", "Meiryo", sans-serif;
}
/* ---------- Reset / base ---------- */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.9;
  letter-spacing: .02em;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3, h4 {
  line-height: 1.4;
  margin: 0;
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}
/* ---------- Section framing ---------- */
.section {
  padding: 84px 0;
}
.section--tint {
  background: var(--pink-100);
}
.section--soft {
  background: linear-gradient(180deg, var(--white), var(--pink-100));
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .28em;
  color: var(--pink-800);
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4.2vw, 2.5rem);
  color: var(--pink-900);
  letter-spacing: .04em;
}
.section-title .accent {
  color: var(--pink-600);
}
.section-lead {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}
/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn i {
  font-size: 1.05em;
}
.btn--primary {
  background: linear-gradient(135deg, var(--pink-700), var(--pink-900));
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn--line {
  background: #06C755;
  color: #fff;
  box-shadow: 0 12px 28px rgba(6, 199, 85, .28);
}
.btn--line:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(6, 199, 85, .36);
}
.btn--ghost {
  background: #fff;
  color: var(--pink-700);
  border-color: var(--pink-300);
}
.btn--ghost:hover {
  background: var(--pink-100);
  transform: translateY(-3px);
}
.btn--lg {
  padding: 18px 44px;
  font-size: 1.06rem;
}
/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 247, .92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 42px;
  height: 42px;
  flex: none;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand__name {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: .12em;
  color: var(--pink-900);
  font-weight: 700;
}
.brand__sub {
  font-size: .62rem;
  letter-spacing: .3em;
  color: var(--pink-500);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  display: inline-block;
  padding: 10px 16px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav__links a:hover {
  color: var(--pink-700);
  background: #f890b9;
}
.nav__links a.is-active {
  color: var(--pink-700);
  font-weight: 700;
}
.nav__links a.is-active::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px auto 0;
  background: var(--pink-600);
  border-radius: 2px;
}
.nav__cta {
  margin-left: 10px;
}
.nav__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--pink-800);
  font-size: 1rem;
}
.nav__tel small {
  display: block;
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav__toggle {
  display: none;
  background: none;
  border: 0;
  width: 46px;
  height: 46px;
  color: var(--pink-800);
  font-size: 1.5rem;
  cursor: pointer;
}
/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
}
.hero__media {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
}
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(178, 53, 104, .55) 0%, rgba(217, 78, 134, .30) 45%, rgba(255, 231, 240, .08) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 60px 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .4);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .8rem;
  letter-spacing: .1em;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 6.4vw, 3.9rem);
  line-height: 1.35;
  letter-spacing: .05em;
  text-shadow: 0 4px 24px rgba(90, 20, 45, .4);
}
.hero__title span {
  color: var(--pink-200);
}
.hero__sub {
  margin-top: 22px;
  font-size: clamp(1rem, 2.3vw, 1.22rem);
  max-width: 30ch;
  text-shadow: 0 2px 12px rgba(90, 20, 45, .5);
}
.hero__actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__info {
  position: relative;
  z-index: 2;
  background: #fff;
  margin: -46px auto 0;
  max-width: var(--maxw);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}
.hero__info div {
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__info div + div {
  border-left: 1px solid var(--line);
}
.hero__info i {
  color: var(--pink-600);
  font-size: 1.5rem;
  width: 34px;
  text-align: center;
}
.hero__info b {
  display: block;
  font-size: 1.02rem;
  color: var(--pink-900);
}
.hero__info small {
  color: var(--ink-soft);
  font-size: .82rem;
}
/* =========================
   HERO：SP時の画像位置調整
========================= */
@media (max-width: 767px) {
  .hero__media img {
    object-fit: cover;
    object-position: 90% center;
  }
}
/* Page banner (for sub-pages) */
.page-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(178, 53, 104, .58), rgba(217, 78, 134, .32));
}
.page-banner__inner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 40px 0;
}
.page-banner h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: .06em;
  text-shadow: 0 4px 20px rgba(90, 20, 45, .4);
}
.breadcrumb {
  font-size: .82rem;
  letter-spacing: .08em;
  opacity: .95;
  margin-bottom: 14px;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
/* ============================================================
   Concept cards (3-up)
   ============================================================ */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 26px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.pillar {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.pillar__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.pillar__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.pillar:hover .pillar__img img {
  transform: scale(1.06);
}
.pillar__body {
  padding: 26px 24px 30px;
}
.pillar__tag {
  color: var(--pink-600);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
}
.pillar__title {
  font-family: var(--serif);
  font-size: 1.28rem;
  color: var(--pink-900);
  margin: 10px 0 12px;
}
.pillar__text {
  color: var(--ink-soft);
  font-size: .95rem;
}
/* ---------- Intro split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 54px;
  align-items: center;
}
.split--rev .split__media {
  order: 2;
}
.split__media {
  position: relative;
}
.split__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
}
.split__media2 img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 5/3.5;
  object-fit: cover;
}
.split__media2 .stamp {
  position: absolute;
  bottom: -22px;
  right: -14px;
  background: linear-gradient(135deg, var(--pink-700), var(--pink-900));
  color: #fff;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--serif);
  font-size: .92rem;
  line-height: 1.4;
  box-shadow: var(--shadow-md);
}
.split__body h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.6vw, 2.15rem);
  color: var(--pink-900);
  margin-bottom: 20px;
  letter-spacing: .03em;
}
.split__body p {
  color: var(--ink-soft);
}
/* ---------- Reasons list ---------- */
.reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.reason {
  display: flex;
  gap: 18px;
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.reason:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.reason__icon {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pink-200), var(--pink-300));
  color: var(--pink-800);
  font-size: 1.4rem;
  display: grid;
  place-items: center;
}
.reason h3 {
  font-size: 1.1rem;
  color: var(--pink-900);
  margin-bottom: 8px;
}
.reason p {
  color: var(--ink-soft);
  font-size: .93rem;
  margin: 0;
}
/* ============================================================
   Features page — feature blocks
   ============================================================ */
.feature-block {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 30px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.feature-block__no {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-700), var(--pink-900));
  color: #fff;
  display: grid;
  place-items: center;
}
.feature-block h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--pink-900);
  margin-bottom: 12px;
}
.feature-block p {
  color: var(--ink-soft);
  margin: 0;
}
/* ---------- Videos ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: #000;
}
.video-card figcaption {
  padding: 16px 18px;
  font-size: .9rem;
  color: var(--ink-soft);
  text-align: center;
}
/* ---------- Steps / flow ---------- */
.steps {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: stretch;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.step__no {
  background: linear-gradient(160deg, var(--pink-700), var(--pink-900));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
  font-family: var(--serif);
  line-height: 1;
}
.step__no span {
  display: block;
}
.step__no .lbl {
  font-size: .58rem;
  letter-spacing: .18em;
  opacity: .85;
  line-height: 1;
}
.step__no .num {
  font-size: 1.7rem;
  line-height: 1;
}
.step__body {
  padding: 20px 24px;
}
.step__body h3 {
  font-size: 1.08rem;
  color: var(--pink-900);
  margin-bottom: 6px;
}
.step__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .93rem;
}
/* ---------- Reviews ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.review {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
}
.review::before {
  content: "\201C";
  font-family: var(--serif);
  position: absolute;
  top: 6px;
  left: 22px;
  font-size: 4rem;
  color: var(--pink-200);
  line-height: 1;
}
.review__who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-700), var(--pink-900));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.review__who b {
  color: var(--pink-900);
}
.review__stars {
  color: var(--gold);
  margin-left: auto;
  font-size: .9rem;
}
.review p {
  margin: 0;
  color: var(--ink-soft);
  position: relative;
  z-index: 1;
}
/* ---------- FAQ ---------- */
.faq {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq details {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  color: var(--pink-900);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary .q {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--pink-800);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: .95rem;
}
.faq summary .chev {
  margin-left: auto;
  color: var(--pink-500);
  transition: transform .3s;
}
.faq details[open] summary .chev {
  transform: rotate(180deg);
}
.faq .faq__a {
  padding: 0 24px 22px 68px;
  color: var(--ink-soft);
}
/* ============================================================
   Menu page
   ============================================================ */
.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.menu-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 28px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--pink-500), var(--pink-800));
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.menu-card.is-featured {
  border-color: var(--pink-400);
  background: linear-gradient(180deg, #fff, var(--pink-100));
}
.menu-card__badge {
  align-self: flex-start;
  background: var(--pink-800);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.menu-card h3 {
  font-size: 1.1rem;
  color: var(--pink-900);
  margin-bottom: 14px;
  padding-left: 8px;
}
.menu-card__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
  padding-left: 8px;
}
.menu-card__price .now {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--pink-700);
  font-weight: 700;
}
.menu-card__price .was {
  color: var(--ink-soft);
  font-size: .82rem;
}
.menu-card__price .min {
  margin-left: auto;
  font-size: .78rem;
  color: var(--pink-700);
  background: var(--pink-100);
  padding: 4px 10px;
  border-radius: 999px;
  text-decoration: none;
}
.menu-card p {
  color: var(--ink-soft);
  font-size: .92rem;
  margin: 0;
  padding-left: 8px;
}
.menu-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: .86rem;
  margin-top: 28px;
}
/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  text-align: center;
  color: #fff;
}
.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(178, 53, 104, .76), rgba(217, 78, 134, .56));
}
.cta-band__inner {
  position: relative;
  z-index: 2;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  letter-spacing: .05em;
}
.cta-band p {
  margin: 16px auto 30px;
  max-width: 46ch;
  opacity: .95;
}
.cta-band__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.cta-band__tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  margin-top: 8px;
}
/* ---------- Info / access ---------- */
.info-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  padding: 12px 8px;
}
.info-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child {
  border-bottom: 0;
}
.info-row dt {
  color: var(--pink-800);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-row dt i {
  color: var(--pink-500);
}
.info-row dd {
  margin: 0;
  color: var(--ink-soft);
}
/* ============================================================
   Contact page
   ============================================================ */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.contact-card__icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: #fff;
}
.contact-card__icon.is-tel {
  background: linear-gradient(135deg, var(--pink-600), var(--pink-800));
}
.contact-card__icon.is-line {
  background: linear-gradient(135deg, #22d366, #06C755);
}
.contact-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--pink-900);
  margin-bottom: 10px;
}
.contact-card p {
  color: var(--ink-soft);
  font-size: .92rem;
  margin-bottom: 20px;
}
.contact-card .big-tel {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--pink-700);
  font-weight: 700;
  display: block;
  margin-bottom: 18px;
}
.policy {
  max-width: 860px;
  margin: 0 auto;
}
.policy h3 {
  font-family: var(--serif);
  color: var(--pink-900);
  font-size: 1.2rem;
  margin: 26px 0 10px;
}
.policy p {
  color: var(--ink-soft);
}
.policy ul {
  color: var(--ink-soft);
  padding-left: 1.2em;
}
.policy li {
  margin: 6px 0;
}
/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: linear-gradient(160deg, #f890b9, #b23568);
  color: #fff0f6;
}
.footer-top {
  padding: 90px 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .brand__name {
  color: #fff;
}
.footer-brand .brand__sub {
  color: var(--pink-300);
}
.footer-brand p {
  color: #ffe6f1;
  font-size: .9rem;
  margin-top: 16px;
}
.footer-col h4 {
  font-size: .95rem;
  letter-spacing: .1em;
  margin-bottom: 16px;
  color: #fff;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li {
  margin: 10px 0;
}
.footer-col a {
  color: #ffe6f1;
  font-size: .9rem;
  transition: color .2s;
}
.footer-col a:hover {
  color: #fff;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffe6f1;
  font-size: .9rem;
  margin: 10px 0;
}
.footer-contact i {
  color: var(--pink-300);
  width: 18px;
  text-align: center;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 20px 0;
  text-align: center;
  font-size: .8rem;
  color: #ffdcec;
}
/* ============================================================
   Floating LINE banner
   ============================================================ */
.floating-line {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #06C755;
  color: #fff;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(6, 199, 85, .4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.floating-line i {
  font-size: 1.3rem;
}
.floating-line:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(6, 199, 85, .5);
}
.floating-line .fl-text small {
  display: block;
  font-size: .62rem;
  font-weight: 500;
  opacity: .9;
  letter-spacing: .05em;
}
/* ============================================================
   Floating Instagram banner
   ============================================================ */
.floating-instagram {
  position: fixed;
  right: 20px;
  bottom: 105px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    #feda75 0%,
    #fa7e1e 25%,
    #d62976 50%,
    #962fbf 75%,
    #4f5bd5 100%
  );
  color: #fff;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(214, 41, 118, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.floating-instagram i {
  font-size: 1.3rem;
}

.floating-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(150, 47, 191, .45);
}

.floating-instagram .fl-text small {
  display: block;
  font-size: .62rem;
  font-weight: 500;
  opacity: .9;
  letter-spacing: .05em;
}
@media (max-width: 460px) {
  .floating-line .fl-text,
  .floating-instagram .fl-text {
    display: none;
  }

  .floating-line,
  .floating-instagram {
    padding: 14px;
  }

  .floating-instagram {
    bottom: 78px;
  }
}
/* ============================================================
   Footer Instagram
   ============================================================ */
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    #feda75 0%,
    #fa7e1e 25%,
    #d62976 50%,
    #962fbf 75%,
    #4f5bd5 100%
  );
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  line-height: 1.3;
  box-shadow: 0 8px 22px rgba(150, 47, 191, .25);
  transition: transform .25s ease, box-shadow .25s ease;
}

.footer-instagram i {
  font-size: 1.45rem;
}

.footer-instagram span {
  display: flex;
  flex-direction: column;
}

.footer-instagram small {
  font-size: .65rem;
  font-weight: 500;
  opacity: .9;
  letter-spacing: .04em;
}

.footer-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(150, 47, 191, .35);
}
/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}
/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .split, .split--rev .split__media {
    grid-template-columns: 1fr;
  }
  .split--rev .split__media {
    order: 0;
  }
  .split__media {
    max-width: 560px;
    margin: 0 auto;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 860px) {
  .nav__toggle {
    display: block;
  }
  .nav__links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 10px 16px 18px;
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height .35s ease, opacity .3s ease, padding .3s ease;
  }
  .nav__links.is-open {
    max-height: 520px;
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links a {
    padding: 14px 12px;
    border-radius: 12px;
  }
  .nav__links a.is-active::after {
    display: none;
  }
  .nav__cta {
    margin: 8px 0 0;
  }
  .nav__cta .btn {
    width: 100%;
    justify-content: center;
  }
  .nav__tel-wrap {
    display: none;
  }
}
@media (max-width: 780px) {
  .section {
    padding: 60px 0;
  }
  .grid-3, .video-grid {
    grid-template-columns: 1fr;
  }
  .grid-2, .reasons, .reviews, .menu-list, .contact-methods {
    grid-template-columns: 1fr;
  }
  .hero__info {
    grid-template-columns: 1fr;
  }
  .hero__info div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .video-grid {
    max-width: 380px;
    margin: 0 auto;
  }
  .info-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 18px;
  }
}
@media (max-width: 460px) {
  .container {
    padding: 0 16px;
  }
  .feature-block {
    grid-template-columns: 1fr;
  }
  .feature-block__no {
    margin-bottom: 4px;
  }
  .floating-line .fl-text {
    display: none;
  }
  .floating-line {
    padding: 14px;
  }
  .step {
    grid-template-columns: 64px 1fr;
  }
}
/* ============================================================
   Additions — nav CTA label, pillar link, access map
   ============================================================ */
/* Keep the LINE booking button label white in the nav (overrides .nav__links a color) */
.nav__links .btn--line, .nav__links .btn--line:hover {
  color: #fff;
}
/* Pillar "read more" link */
.pillar__more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: var(--pink-700);
  font-weight: 700;
  font-size: .9rem;
  transition: gap .2s ease, color .2s ease;
}
.pillar:hover .pillar__more {
  color: var(--pink-800);
  gap: 11px;
}
/* Access map embed */
.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.65;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-btn {
  margin-top: 16px;
}
@media (max-width: 780px) {
  .map-embed {
    aspect-ratio: 3 / 2;
  }
}
/* Menu group headings (初回限定 / 2回目以降) */
.menu-group {
  text-align: center;
  max-width: 760px;
  margin: 8px auto 30px;
}
.menu-group + .menu-list {
  margin-bottom: 8px;
}
.menu-list + .menu-group {
  margin-top: 56px;
}
.menu-group__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3.4vw, 1.7rem);
  color: var(--pink-900);
  letter-spacing: .04em;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--pink-300);
}
.menu-group__title i {
  color: var(--pink-600);
}
.menu-group__sub {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: .95rem;
}
/*===========================
contact
===========================*/
.contactTel {
  font-family: 'Rounded Mplus 1c';
  font-size: 3.3em;
  line-height: 1.2em;
  margin-top: 0.6em;
  text-align: center;
}
.contactTel a {
  text-decoration: none;
  display: block;
  color: #2899d4;
}
.contact table {
  box-sizing: border-box;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
}
.contact table th {
  box-sizing: border-box;
  padding: 1em 1em;
  border-bottom: 1px #C54D7D solid;
  letter-spacing: 0;
  font-weight: normal;
  white-space: nowrap;
  vertical-align: middle;
  text-align: left;
}
.conThFlex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center; /* アイテムを上下中央で配置します */
}
.contact table th .mf_require {
  display: inline-block;
  color: #FFF;
  text-align: center;
  line-height: normal;
  font-size: 0.9em;
  padding: 0.01em 1em 0.15em 1em;
  margin-left: 1.5em;
  background-color: #C54D7D;
  border-radius: 10em;
  -webkit-border-radius: 10em;
  -moz-border-radius: 10em;
}
.contact table td {
  box-sizing: border-box;
  padding: 1em 0.6em;
  border-bottom: 1px #cdcdcd solid;
  font-weight: normal;
  letter-spacing: 0;
}
.contact table input, .contact table textarea {
  box-sizing: border-box;
  background-color: #F7F7F7;
  border: none;
  border-radius: 0.5em;
  padding: 1.5em 2em;
  color: #333;
}
.contact table select {
  box-sizing: border-box;
  background-color: #F7F7F7;
  border: none;
  border-radius: 0.5em;
  padding: 1em 1.5em;
  color: #333;
  margin-bottom: 3px;
}
.contact table td .select {
  margin-bottom: 0.5em;
}
.contact table td .select li {
  float: left;
  margin-right: 20px;
}
.contact table td .select li input {
  vertical-align: middle;
}
.contact table td label {
  padding: 0 0 0px 5px;
}
.contact .formBtn {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}
.contact .btnSend {
  background-color: #C54D7D;
  color: #fff;
  padding: 1em 0;
  margin: 0 5px 0 5px;
  border: 0;
  width: 160px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
.contact .btnReset {
  background-color: #fafafa;
  color: #333;
  padding: 1em 0;
  margin: 0 5px 0 5px;
  border: 0;
  border: 1px solid #cccccc;
  width: 160px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
.contact .forml {
  width: 90%;
}
.contact .formm {
  width: 50%;
}
.contact .noborder {
  border: none;
}
.contact label {}
/*
.contact .checkBox {
	margin:2px 0 4px 0;
	vertical-align:middle;
}
*/
.contact table .checkCSS {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 6px;
  font-size: 14px;
}
.contact table .checkCSS input {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #CCC;
  border-radius: 3px; /* ← 四角 */
  position: relative;
  padding: 0;
}
.contact table .checkCSS input:checked {
  border-color: #333;
}
.contact table .checkCSS input:checked::after {
  box-sizing: border-box;
  content: "";
  width: 6px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  position: absolute;
  top: 0px;
  left: 4px;
  transform: rotate(45deg);
}
.contact table .radioCSS {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 6px;
  font-size: 14px;
}
.contact table .radioCSS input {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #CCC;
  border-radius: 50%;
  position: relative;
  padding: 0;
}
.contact table .radioCSS input:checked {
  border-color: #333;
}
.contact table .radioCSS input:checked::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
}
/*  privacy */
.privacy h3 {
  font-size: 1.3em;
  color: #444;
  border: none;
  padding: 0.6em 0 0.2em 0;
  margin: 0;
  background-image: none;
  font-family: "メイリオ", Meiryo, Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
  text-align: left;
}
.privacy h3:after {
  content: none;
}
.privacy p {
  padding: 0 0.3em 1em 0.3em;
}
@media screen and (max-width: 768px) {
  .contactTel {
    font-size: 2.8em;
    margin-top: 0.4em;
  }
  /*  privacy */
  .privacy h3 {
    font-size: 1.2em;
  }
  .privacy p {
    padding: 0 0.2em 1em 0.2em;
  }
}
/* privacyFrame */
.privacyFrame {
  box-sizing: border-box;
  width: 80%;
  margin: 2em auto;
  padding: 2em;
  background: #F6F6F6;
  height: 300px;
  overflow-y: auto;
}
.privacyFrame h3::after, .privacyFrame h4::after {
  content: none;
}
.privacyFrame h3 {
  text-shadow: none;
  text-align: left;
  font-size: 1.4em;
  padding: 0;
  margin-bottom: 0.8em;
}
.privacyFrame h4 {
  text-shadow: none;
  text-align: left;
  font-size: 1.2em;
  padding: 0;
  margin: 0.8em 0 0.4em 0;
}
.privacyFrame p {
  margin-bottom: 1em;
}
@media only screen and (max-width: 600px) {
  .privacyFrame {
    box-sizing: border-box;
    width: 100%;
    padding: 1em;
  }
  .privacyFrame h3 {
    font-size: 1.3em;
  }
  .privacyFrame h4 {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 600px) {
  .contactTel {
    font-size: 2em;
    margin-top: 0.4em;
  }
  .contact table {
    width: 100%;
    margin: 0 0 3% 0;
    padding: 10px;
    background-color: #FFF;
  }
  .contact table tr {
    display: block;
  }
  .contact table th {
    display: list-item;
    padding: 1.5em 1em 0.5em 1em;
    border: none;
    text-align: left;
    font-weight: normal;
    vertical-align: top;
    width: auto;
    line-height: 1em;
  }
  .conThFlex {
    display: flex;
    justify-content: start;
  }
  .contact table td {
    display: list-item;
    width: auto;
    font-weight: normal;
    padding: 0.2em 1em 1.5em 1em;
  }
  .contact .forml {
    width: 100%
  }
  .contact .formm {
    width: 100%
  }
  .contact .btnSend {
    width: 100px;
  }
  .contact .btnReset {
    width: 100px;
  }
}
.pcOFFspON {
  display: none !important;
}
@media screen and (max-width: 600px) {
  .pcOFFspON {
    display: block !important;
  }
}
/* color:var(--basic-color); で利用 */ :root {
  --basic-color: #92b65d;
}