/* assets/css/style.css */
:root {
  --primary: #ffadcf;
  --secondary: #D4A373;
  --primary-dark: #ec75a7;
  --bg: #FFF5F2;
  --surface: #FFFCFA;
  --subtle: #FBEAE6;
  --text: #4A4040;
  --muted: #786868;
  --line: rgba(74, 64, 64, .12);
  --shadow: 0 14px 34px rgba(16, 24, 40, .10);
  --shadow-sm: 0 8px 18px rgba(16, 24, 40, .08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 112rem;
  --container-narrow: 90rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

iframe,
video {
  max-width: 100%;
  display: block;
}


body {
  font-family: "Shippori Mincho B1", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  letter-spacing: .02em;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 16px;
}

.l-container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.l-container--narrow {
  width: min(var(--container-narrow), calc(100% - 32px));
  margin-inline: auto;
}

/* Header */
.l-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(163, 92, 92, .12);
}

.l-header__inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.c-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid var(--primary); */
  /* background: var(--primary); */
  color: #fff;
  padding: 6px 12px;
  letter-spacing: .18em;
  font-weight: 600;
}

.c-logo--footer {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
}

.c-nav {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 16px;
  color: var(--muted);
}

.c-nav__link {
  transition: opacity .2s ease, color .2s ease;
}

.c-nav__link:hover {
  color: var(--primary);
}

.l-header__cta {
  display: none;
}

.c-iconBtn {
  border: none;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  color: var(--muted);
}

/* Drawer */
.c-drawer {
  display: none;
  border-top: 1px solid rgba(163, 92, 92, .12);
  background: rgba(255, 255, 255, .96);
}

.c-drawer.is-open {
  display: block;
}

.c-drawer__inner {
  padding: 14px 16px 18px;
  display: grid;
  gap: 10px;
  /* height: 100%; */
}

.c-drawer__link {
  padding: 12px 10px;
  border-radius: 10px;
  color: var(--text);
  background: rgba(251, 234, 230, .6);
  /* display: block; */
}

.c-drawer__cta {
  margin-top: 6px;
}

/* Buttons */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, opacity .2s ease, background .2s ease, border-color .2s ease;
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 16px;
}

.c-btn:active {
  transform: translateY(1px);
}

.c-btn--primary {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 12px 26px rgba(163, 92, 92, .22);
}

.c-btn--primary:hover {
  opacity: .92;
}

.c-btn--outline {
  background: #fff;
  color: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 12px 26px rgba(163, 92, 92, .12);
}

.c-btn--outline:hover {
  background: rgba(251, 234, 230, .7);
}

.c-btn--wide {
  width: min(320px, 100%);
  justify-content: space-between;
  padding: 14px 18px;
  font-size: 1.2rem;
  letter-spacing: .06em;
  width: 100%;
  text-align: center;
  display: inline-block;
}

.c-btn--xl {
  padding: 16px 22px;
  font-size: 16px;
  margin: 0 auto;
}

.c-btn__icon {
  font-size: 16px;
}

/* Hero */
.p-hero {
  padding: 10px 0 90px;
  background: linear-gradient(135deg, var(--bg) 0%, #fff 70%);
  position: relative;
  z-index: 0;
}

.p-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.c-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 10px;
  border: 1px solid rgba(163, 92, 92, .18);
  background: var(--primary-dark);
  font-size: 1.4rem;
  color: #fff;
  width: 100%;
  text-align: center;
}

.p-hero__title {
  margin: 14px 0 10px;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: .02em;
  text-align: center;
}

.p-hero__lead {
  margin: 0;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
  font-size: 20px;
}

.p-hero__points {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.c-point {
  display: grid;
  place-items: center;
  gap: 2rem;
  text-align: center;
}

.c-point__icon {
  width: 12vw;
  height: auto;
  padding: 1rem;
  border-radius: 999px;
  background: var(--subtle);
  color: var(--primary);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}

.c-point__text {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.35;
}

.p-hero__ctaRow {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.c-ctaCard {
  display: grid;
  gap: 6px;
  justify-items: center;
  /* justify-content: center; */
}

.c-ctaCard__tag {
  font-size: 16px;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--primary-dark);
  color: #fff;
}

.p-hero__visual {}

.c-heroPhoto {
  position: relative;
  height: 80vh;
  border-radius: 28px;
  overflow: hidden;
  background: var(--subtle);
  /* border: 4px solid #fff; */
  box-shadow: var(--shadow);
  width: auto;
}

.c-heroPhoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
  transition: transform .7s ease;
}

.c-heroPhoto:hover img {
  transform: scale(1.04);
}

.c-heroPhoto__cap {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: 16px;
  color: #fff;
  background: rgba(127, 62, 62, .55);
  padding: 4px 8px;
  border-radius: 8px;
  backdrop-filter: blur(6px);
}

/* Sections */
.p-section {
  padding: 84px 0;
  background: transparent;
  position: relative;
}

.p-section--surface {
  background: #fffcfa;
  /* max-width: 70rem; */
  /* margin: 0 auto; */
}

.p-section--soft {
  background: var(--subtle);
}

.p-section--warm {
  background: linear-gradient(180deg, #fff 0%, rgba(251, 234, 230, .75) 100%);
}

.c-sectionHead {
  margin-bottom: 34px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.c-sectionHead--center {
  text-align: center;
}

.c-sectionHead__title {
  margin: 0 0 12px;
  font-size: 3rem;
  color: var(--primary-dark);
  line-height: 1.45;
  text-align: center;
}

.c-sectionHead__line {
  width: 64px;
  height: 2px;
  background: var(--secondary);
}

.c-sectionHead--center .c-sectionHead__line {
  margin-inline: auto;
}

.c-centerTitle {
  margin: 0 0 34px;
  text-align: center;
  font-size: 2rem;
  color: var(--text);
}

/* Two cols cards */
.p-twoCols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.c-card {
  background: rgb(255 255 255);
  /* border: 1px solid rgba(163, 92, 92, .10); */
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 28px rgba(16, 24, 40, .06);
}

.c-card__title {
  margin: 0 0 10px;
  font-size: 1.6rem;
  color: var(--primary-dark);
  border-bottom: 1px solid rgba(163, 92, 92, .22);
  padding-bottom: 10px;
  display: inline-block;
}

.c-card__lead {
  margin: 0 0 14px;
  font-size: 16px;
  color: var(--muted);
}

.c-list {
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 16px;
}

.c-card__media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(163, 92, 92, .12);
  height: auto;
  aspect-ratio: 3/2;
}

.c-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Worries */
.p-worries {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 980px;
  margin-inline: auto;
}

.c-worryCard {
  position: relative;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .0);
  border-radius: 22px;
  padding: 26px 24px;
  box-shadow: 0 10px 28px rgba(16, 24, 40, .06);
  transition: border-color .2s ease;
  overflow: hidden;
}

.c-worryCard:hover {
  border-color: rgba(163, 92, 92, .16);
}

.c-worryCard__bgIcon {
  position: absolute;
  right: 12px;
  top: 10px;
  opacity: .10;
  font-size: 56px;
  color: var(--primary);
}

.c-worryCard__title {
  margin: 0 0 16px;
  font-size: 1.6rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.c-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 999px;
  display: inline-block;
}

.c-checkList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.c-checkList li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.c-checkList .material-icons-outlined {
  color: var(--secondary);
  font-size: 20px;
  margin-top: 1px;
}

.p-worries__note {
  margin: 18px auto 0;
  width: fit-content;
  background: #dc4b87;
  color: #fff;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 24px;
  letter-spacing: .12em;
  text-align: center;
  border: 3px solid rgba(163, 92, 92, .10);
}

/* Philosophy */
.p-philosophy {
  text-align: center;
  max-width: 820px;
}

.c-kicker {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--primary-dark);
}

.c-kicker--inverse {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .65);
  display: inline-block;
  padding: 6px 10px;
}

.p-philosophy__title {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 1.55;
}

.p-philosophy__text {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--muted);
}

.p-philosophy__em {
  font-weight: 700;
  color: var(--primary-dark);
  border-bottom: 1px solid var(--primary-dark);
  font-size: 130%;
}

/* Special */
.p-special {
  padding: 76px 0;
  background: var(--primary-dark);
  color: #fff;
  text-align: center;
}

.p-special__title {
  margin: 10px 0 6px;
  font-size: 28px;
}

.p-special__sub {
  margin: 0 0 3rem;
  font-size: 18px;
  color: rgb(255 255 255);
}

.p-special__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 70rem;
  margin-inline: auto;
}

.c-miniCard {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 14px;
  padding: 22px;
  backdrop-filter: blur(8px);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.c-miniCard__num {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: -4rem;
}

.c-miniCard__title {
  font-size: 1.2rem;
  font-weight: 700;
}

.c-miniCard__sub {
  font-size: 1.2rem;
  color: rgb(255 255 255);
}

/* Cases */
.p-cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 980px;
  margin-inline: auto;
}

.c-caseCard {
  background: #fff;
  border: 1px solid rgba(163, 92, 92, .12);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(16, 24, 40, .06);
}

.c-caseCard__imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.c-beforeAfter {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--subtle);
  aspect-ratio: 1 / 1;
}

.c-beforeAfter img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-beforeAfter__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, .18);
}

.c-beforeAfter__label--after {
  background: rgba(0, 0, 0, .10);
}

.c-caseCard__title {
  margin: 0 0 6px;
  color: var(--primary-dark);
  font-size: 16px;
  font-weight: 700;
}

.c-caseCard__text {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

/* Reasons */
.p-reasons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 1100px;
  margin-inline: auto;
  text-align: center;
  align-items: start;
}

.p-reasons {}

.c-reason {
  display: grid;
  justify-items: center;
}

.c-reason__photo {
  /* width: 22rem; */
  height: auto;
  border-radius: 1rem;
  overflow: hidden;
  border: 4px solid rgba(251, 234, 230, .95);
  box-shadow: 0 12px 26px rgba(16, 24, 40, .08);
  position: relative;
  aspect-ratio: 3/2;
}

.c-reason__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.c-reason:hover .c-reason__photo img {
  transform: scale(1.06);
}

.c-reason__badge {
  position: absolute;
  right: auto;
  bottom: auto;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 0 0 14px 0;
  font-weight: 700;
}

.c-reason__title {
  margin: 12px 0 6px;
  font-size: 20px;
  font-weight: 700;
}

.c-reason__text {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  max-width: 260px;
}

/* Steps */
.c-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 460px;
  position: relative;
  display: grid;
  gap: 18px;
}

.c-steps::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(163, 92, 92, .22);
}

.c-step {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.c-step__num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  z-index: 1;
}

.c-step__text {
  font-weight: 600;
}

/* Price box */
.c-priceBox {
  max-width: 70rem;
  margin-inline: auto;
  /* background: #fff; */
  /* border: 1px solid var(--primary); */
  /* padding: 28px; */
  /* border-radius: 10px; */
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.c-priceBox__head {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 1.2rem;
}

.c-priceBox__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.c-priceBox__unit {
  color: var(--muted);
  font-size: 16px;
}

.c-priceBox__yen {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: .02em;
}

.c-priceBox__price.-normal .c-priceBox__yen {
  text-decoration: line-through;
}

.c-priceBox__tax {
  color: var(--muted);
  font-size: 16px;
}

.c-priceBox__note {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  margin-top: -1rem;
}

/* Shops */
.p-shops {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.c-shop {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(16, 24, 40, .06);
}

.c-shop__name {
  margin: 0 0 8px;
  font-size: 1.6rem;
  font-weight: 700;
}

.c-shop__info {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.c-shop__map {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: auto;
  /* aspect-ratio: 3/2; */
  /* object-fit: cover; */
}

.c-shop__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
}

.c-shop__mapLabel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: #fff;
  /* background: rgba(0, 0, 0, .26); */
}

/* DL */
.c-smallTitle {
  margin: 0 0 18px;
  text-align: center;
  font-size: 16px;
  letter-spacing: .22em;
  font-weight: 700;
}

.c-dl {
  border-top: 1px solid rgba(163, 92, 92, .14);
  background: transparent;
}

.c-dl__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(163, 92, 92, .14);
}

.c-dl__row dt {
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
}

.c-dl__row dd {
  margin: 0;
  font-size: 16px;
}

/* Form */
.c-contactHead {
  text-align: center;
  margin-bottom: 24px;
}

.c-contactHead__title {
  margin: 0 0 6px;
  font-size: 30px;
  color: var(--primary);
}

.c-contactHead__sub {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

.c-form {
  display: grid;
  gap: 14px;
}

.c-field {
  display: grid;
  gap: 6px;
}

.c-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
}

.c-required {
  font-size: 14px;
  color: #ff6b6b;
  margin-left: 6px;
}

.c-input,
.c-select,
.c-textarea {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(163, 92, 92, .22);
  border-radius: 10px;
  padding: 12px 12px;
  outline: none;
  color: var(--text);
}

.c-input:focus,
.c-select:focus,
.c-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(163, 92, 92, .12);
}

.c-form__actions {
  padding-top: 16px;
  text-align: center;
  margin: 0 auto;
}

.c-form__note {
  margin: 10px 0 0;
  font-size: 16px;
  color: var(--muted);
}

/* Closing */
.p-closing {
  padding: 76px 0;
  background: var(--subtle);
  text-align: center;
}

.p-closing__title {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1.55;
}

.p-closing__text {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

/* Footer */
.l-footer {
  background: var(--primary-dark);
  color: #fff;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  position: relative;
}

.l-footer__inner {
  text-align: center;
}

.l-footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0 18px;
  font-size: 16px;
  color: rgb(255 255 255);
}

.l-footer__links a:hover {
  color: #fff;
}

.l-footer__copy {
  margin: 0;
  font-size: 14px;
  color: rgb(255 255 255);
}

/* Responsive */
@media (min-width: 1000px) {
  .c-nav {
    display: flex;
  }

  .l-header__cta {
    display: inline-flex;
  }

  .l-header__menuBtn {
    display: none;
  }

  .p-hero__inner {
    grid-template-columns: 1.4fr 1fr;
    gap: 42px;
  }

  .p-hero__title {
    font-size: 3rem;
    text-align: center;
  }

  .p-hero__ctaRow {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    max-width: 70rem;
    margin: 0 auto;
    margin-top: 5rem;
  }

  .p-twoCols {
    grid-template-columns: repeat(2, 1fr);
    max-width: 70rem;
    margin: 0 auto;
  }

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

  .p-special__grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }

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

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

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

  .c-dl__row {
    grid-template-columns: 160px 1fr;
    align-items: start;
    gap: 18px;
  }
}

.c-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 10001;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.c-drawer.is-open {
  transform: translateX(0);
}

[data-drawer-overlay] {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 10000;
}

[data-drawer-overlay].is-open {
  opacity: 1;
  pointer-events: auto;
}

body.is-menu-open {
  overflow: hidden;
  touch-action: none;
}

.c-drawer {
  transform: translateX(100%);
  transition: .25s;
}

.c-drawer.is-open {
  transform: translateX(0);
  z-index: 360;
  width: 90%;
  height: 100vh;
}

.c-drawer {
  display: block;
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 10001;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.h-logo img {
  width: 13rem;
}

.c-priceBox__price.-normal .c-priceBox__yen {
  text-decoration: line-through;
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  a.c-btn.c-btn--primary.l-header__cta {
    display: none;
  }

  p.p-hero__lead {
    margin-top: 1rem;
  }
}

.arrow {
  /* content: "↓"; */
  position: relative;
  display: flex;
  align-content: center;
  justify-content: center;
  font-weight: 900;
  font-family: 'Noto Serif JP';
  color: var(--primary);
  font-size: 1.4rem;
  margin: -1rem;
}

.c-shop__map iframe {
  aspect-ratio: 2/1;
  object-fit: cover;
  width: 100%;
}



/* Flow section */
.p-flow {
  padding: 80px 0;
}

.p-flow__lead {
  text-align: center;
  margin: 20px auto 50px;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

/* Steps */
.p-flow__steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  max-width: 70rem;
}

/* 
.p-special__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 70rem;
  margin-inline: auto;
}
 */
.p-flowStep {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  position: relative;
}

.p-flowStep__num {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f6bfb2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-flowStep__body {
  flex: 1;
}

.p-flowStep__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.p-flowStep__text {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.p-flowStep__icon {
  font-size: 4rem !important;
  color: var(--primary);
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
  .p-flowStep {
    /* flex-direction: column; */
    text-align: center;
    padding: 20px;
  }

  .p-flowStep__icon {
    margin-top: 8px;
  }

  .c-priceBox {
    grid-template-columns: 1fr;
  }
}

/* ===== Flow line & arrow ===== */
.p-flowStep {
  position: relative;
}

/* 縦のライン */
.p-flowStep::after {
  content: "";
  position: absolute;
  left: 38px;
  /* 丸数字の中心に合わせる */
  bottom: -18px;
  width: 2px;
  height: 18px;
  background: rgba(255, 122, 92, 0.35);
}

/* 矢印 */
/* .p-flowStep::before {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -10px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 122, 92, 0.55);
  border-bottom: 2px solid rgba(255, 122, 92, 0.55);
  transform: rotate(45deg);
} */

/* 最後のステップは線を消す */
.p-flowStep:last-child::after,
.p-flowStep:last-child::before {
  display: none;
}

/* ===== Drawer: default closed ===== */
.c-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(86vw, 360px);

  transform: translateX(110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: transform .25s ease, opacity .2s ease, visibility .2s ease;
  z-index: 10001;

  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}

/* open */
.c-drawer.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media screen and (max-width: 767px) {

  html,
  body {
    overflow-x: hidden;
  }

  body.is-menu-open {
    overflow: hidden;
  }

  .l-container,
  .l-header {
    width: 100%;
    padding: 0 2vw;
  }

}

.c-priceBox__note span {
  background: #ef5959;
  color: #fff;
  padding: 0.1rem 1.5rem;
  line-height: 2.2;
  font-size: 1.2rem;
  display: inline-block;
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  span.material-icons-outlined {
    font-size: 4rem;
  }

  .c-sectionHead__title {
    margin: 0 0 12px;
    font-size: 6vw;
    line-height: 1.45;
    text-align: center;
  }

  .p-hero {
    padding: 10px 0 30px;
    background: linear-gradient(135deg, var(--bg) 0%, #fff 70%);
  }
}


/*---コンテンツ幅ごと非表示--*/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 780px) {
  .pc-only {
    display: none !important;
  }
}
/*---タブレットだけ表示--*/
@media screen and (max-width: 767px),
       screen and (min-width: 1025px) {
  .tab-only {
    display: none !important;
  }
}

/*---タブレットだけ非表示--*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .tab-none {
    display: none !important;
  }
}

@media screen and (min-width: 1023px){
  .no-pc{
    display: none !important;
  }
}

/*---br管理--*/
/*---スマホ時改行--*/
@media screen and (max-width: 480px) {
  .pc-br {
    display: none;
  }

  .tb-br {
    display: none;
  }

  .sp-br {
    display: block;
  }
}

/*---タブレット時改行--*/
@media screen and (min-width:481px) and (max-width: 1020px) {
  .pc-br {
    display: none;
  }

  .tb-br {
    display: block;
  }

  .sp-br {
    display: none;
  }
}

/*---PC時改行--*/
@media screen and (min-width:1021px) {
  .pc-br {
    display: block;
  }

  .tb-br {
    display: none;
  }

  .sp-br {
    display: none;
  }
}

.material-icons-outlined {
  font-family: 'Material Icons Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

span.material-icons-outlined.c-btn__icon {
  font-size: 1rem;
  margin-left: 1rem;
}

.l-container.l-container--narrow {
  max-width: 70rem;
}


@media screen and (max-width: 767px) {
  .p-hero__points {
    grid-template-columns: repeat(1, 1fr);
    display: grid;
    margin: 0 auto;
    justify-items: stretch;
    justify-content: space-between;
    margin-top: 2rem;
  }

  .c-point {
    display: grid;
    grid-template-columns: 10% 60%;
    gap: 1rem;
    text-align: center;
    align-content: center;
    text-align: center;
    justify-content: center;
  }

  .c-point__text {
    text-align: left;
    margin-left: 0;
  }

  span.material-icons-outlined.c-btn__icon {
    font-size: 1rem;
  }

  .c-point__icon {
    width: 3rem;
    padding: 0.4rem;
  }

  .p-special__grid {
    gap: 2rem;
  }

  .p-hero__ctaRow {
    gap: 2rem;
    margin-top: 3rem;
  }

  .c-heroPhoto {
    height: auto;
  }

  p.c-badge {
    font-size: 1rem;
  }

  .p-hero__title {
    text-align: center;
    font-size: 1.6rem;
  }

  .l-footer__links nav.c-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

.p-hero:before {
  position: fixed;
  content: "";
  background-image: url(../images/top/bg.jpg);
  background-attachment: fixed;
  width: 80%;
  z-index: 110;
  height: 80%;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
  opacity: .1;
}

/* アンカー先のズレ */
[id] {
  scroll-margin-top: 96px;
}

/* .p-section--surface:before {
  position: fixed;
  content: "";
  background-image: url(../images/top/bg02.jpg);
  background-attachment: fixed;
  width: 80%;
  z-index: 110;
  height: 80%;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  opacity: .1;
} */

.p-closing__illust {
  margin: 0 auto;
  width: 9rem;
  margin-top: 2rem;
}

.l-footer__links .c-nav__link {
  color: #fff;
}

/*SP固定*/
.sp_cta {
  position: fixed;
  width: 100%;
  display: block;
  height: 55px;
  bottom: 0;
  z-index: 2;
  background: #fff;
  display: flex;
  align-items: center;
  z-index: 11;
  padding: 8px;
}

.sp_cta a {
  display: block;
  height: 100%;
  text-align: center;
  width: 50%;
  font-size: 13px;
  padding: 0;
  font-family: "Shippori Mincho B1", serif;
  /* font-weight: 700; */
  color: #ffffff;
  background: #ec75a7;
  position: relative;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #ec75a7;
  border-radius: 5px;
}

.sp_cta a::before {
  /* position: absolute; */
  content: "";
  background-image: url(../images/top/tel-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 1.8rem;
  left: 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
  filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(0%) hue-rotate(151deg) brightness(101%) contrast(105%);
}

.sp_cta a span {
  font-weight: 700;
}

.sp_cta a:last-child {
  background: #ffadcf;
  color: #fff;
}

/* .sp_cta a:last-child::before {
    position: absolute;
    content: "";
    background-image: url(../images/top/header_icon001.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 1.5rem;
    left: 2rem;
    width: 2.5rem;
    height: 2rem;
} */

.bg-soft {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
}

.bg-soft::before {
  content: "";
  position: absolute;
  inset: -25%;

  background:
    radial-gradient(circle at 10% 30%,
      rgba(255, 173, 207, .90),
      transparent 65%),
    radial-gradient(circle at 65% 35%,
      rgba(236, 117, 167, .85),
      transparent 68%),
    radial-gradient(circle at 40% 85%,
      rgba(255, 255, 255, .75),
      transparent 75%);

  filter: blur(55px) saturate(1.15);
  transform: translateZ(0);
  animation: blobMove 18s ease-in-out infinite;
}


.bg-soft>* {
  position: relative;
  z-index: 1;
}

@keyframes blobMove {
  0% {
    transform: translate(-2%, -1%) scale(1.02);
  }

  50% {
    transform: translate(2%, 2%) scale(1.06);
  }

  100% {
    transform: translate(-2%, -1%) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-soft::before {
    animation: none;
  }
}


/*spメニュー*/
/* SPメニュー（スマホだけ） */
@media screen and (max-width: 767px) {

  /* アンカー先のズレ */
  [id] {
    scroll-margin-top: 40px;
  }

  .c-logo {
    display: none;
  }

  .header-sp {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
  }

  .header-sp.-sub {
    background-color: #fff;
  }

  .header-sp__top {
    align-items: center;
    display: flex;
    padding: 2px 0 2px 1vw;
    height: 14vw;
    margin-top: 1rem;
  }

  .header-sp__logo {
    position: relative;
    width: 45vw;
    z-index: 1;
  }

  .hamburger {
    border: none;
    cursor: pointer;
    height: 14vw;
    outline: none;
    padding: 0;
    position: absolute;
    right: 7px;
    top: 7px;
    width: 13.5vw;
    z-index: 40;
    background: #000;
    transition: background-color .5s ease-out;
  }

  .hamburger span {
    background-color: #fff;
    height: .35vw;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    transition: all .5s ease-out;
    width: 4.7vw;
  }

  .hamburger__lineTop {
    top: 5.1vw;
  }

  .hamburger__lineCenter {
    top: 6.4vw;
  }

  .hamburger__lineBottom {
    top: 7.7vw;
  }

  .p-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 40;
  }

  .nav-drawer {
    align-items: center;
    background-color: #fff;
    height: 100vh;
    justify-content: center;
    overflow-y: scroll;
    padding: 18vw 0 15vw;
    position: fixed;
    text-align: center;
    top: 0;
    right: 100%;
    width: 80%;
    z-index: 99;
    transition: all .4s;
  }

  /* SCSSの &.open をCSSに修正 */
  .nav-drawer.open {
    right: 20%;
  }

  .nav-drawer_ttl {
    font-size: 2rem;
    background: #fffcfa;
    color: var(--text);
    position: absolute;
    top: 0;
    width: 100%;
    height: 14vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-drawer__list {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    color: #333;
    padding-left: 0;
  }

  .nav-drawer__link {
    padding: 1.8rem 1rem;
    width: 70vw;
    font-weight: 600;
    color: #333;
    font-size: 3.5vw;
    text-align: center;
  }

  .nav-drawer__btn {
    background: #000;
    color: #fff;
    display: inline-block;
    font-size: 4vw;
    margin-top: 7vw;
    padding: 4vw;
  }

  .nav-drawer__tel {
    font-size: 4vw;
    margin-top: 7vw;
    color: #333;
  }

  .nav-drawer__time {
    font-size: 4vw;
    margin-top: 3vw;
    color: #333;
  }

  .nav-drawer__time span {
    border: 1px solid #333;
    display: inline-block;
    padding: 1vw 2vw;
    margin: 0 1rem 0 0;
    font-size: 3vw;
  }

  .open .hamburger__lineTop {
    top: 6.7vw;
    transform: rotate(45deg);
  }

  .open .hamburger__lineCenter {
    display: none;
  }

  .open .hamburger__lineBottom {
    top: 6.7vw;
    transform: rotate(-45deg);
  }

  .nav-drawer__link {
    padding: 0.8rem 1rem;
    width: 70vw;
    font-weight: 600;
    color: #555;
    font-size: 3.5vw;
    text-align: left;
    position: relative;
    line-height: 1;
    /* border-bottom: 1px solid #000000; */
    display: flex;
  }

  .nav-drawer__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    color: #2e2b8f;
    list-style: none;
    list-style-type: none;
  }

  .nav-drawer__link::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: solid transparent;
    border-width: 5px 0 5px 8px;
    border-left-color: #ec75a7;
    color: #000000;
  }

  .header-sp .nav-drawer__btn {
    display: inline-block;
    font-size: 4vw;
    margin-top: 7vw;
    margin-bottom: 8vw;
    padding: 2vw;
    background: var(--primary-dark);
    color: #fff;
    font-weight: 500;
    width: 70vw;
    border-radius: 13vw;
  }
  .nav-drawer__tel {
    font-size: 4vw;
    margin-top: 7vw;
    color: #2e2b8f;
}
.nav-drawer__tel a {
  display: inline-block;
  margin-left: 4vw;
  position: relative;
  font-size: 3rem;
  font-weight: 600;
}
.nav-drawer__tel a::before {
  background-image: url(../images/common/tel-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 4vw;
  left: -5vw;
  margin: auto;
  position: absolute;
  top: 0;
  width: 4vw;
}
.nav-drawer__nav {
  padding-left: 0;
  padding-top: 0;
}
.hamburger {
  border: none;
  cursor: pointer;
  height: 14vw;
  outline: none;
  padding: 0;
  position: absolute;
  right: 7px;
  top: 7px;
  -webkit-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
  width: 13.5vw;
  z-index: 40;
  background: rgb(31, 137, 214);
  background: -moz-linear-gradient( left, rgba(31, 137, 214, 1) 0%, rgba(46, 43, 143, 1) 100% );
  background: -webkit-linear-gradient(left, rgba(31, 137, 214, 1) 0%, rgba(46, 43, 143, 1) 100%);
  background: linear-gradient(to right, rgba(31, 137, 214, 1) 0%, rgba(46, 43, 143, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#2e2b8f', GradientType=1);
  transition: background-color 0.5s ease-out;
}
.header-sp .hamburger {
  background: #F6BEB2;
  border-radius: 50px;
  /* margin: 2vw; */
  box-shadow: 0 10px 28px rgb(255 255 255 / 22%);
}
.nav-drawer {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  /* display: none; */
  height: 100vh;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow-y: scroll;
  padding-bottom: 15vw;
  padding-top: 18vw;
  position: fixed;
  text-align: center;
  top: 0;
  right: 100%;
  width: 80%;
  z-index: 99;
  transition: all 0.4s;
}
  .nav-drawer p {
    font-size: 1.2rem;
}
  .nav-drawer__reserveTelItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0rem;
}
  p.nav-drawer__reserveTelShop {
    font-size: 16px;
    margin: 0;
}
  a.nav-drawer__reserveTelNum {
    display: block;
    height: 100%;
    text-align: center;
    width: 70%;
    font-size: 16px;
    padding: 8px;
    font-family: "Shippori Mincho B1", serif;
    /* font-weight: 700; */
    color: #ffffff;
    background: var(--primary);
    position: relative;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: #ec75a7;
    border-radius: 5px;
}
  .nav-drawer__reserveTelItem:first-child a.nav-drawer__reserveTelNum {
    background: var(--primary-dark);
}
  a.nav-drawer__reserveTelNum:before {
    /* position: absolute; */
    content: "";
    background-image: url(../images/top/tel-black.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 1.8rem;
    left: 1.2rem;
    width: 1.2rem;
    height: 1.2rem;
    filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(0%) hue-rotate(151deg) brightness(101%) contrast(105%);
}
 .p-worries__note {
    font-size: 1.2rem;
}
.sp_cta a:after {
    content: "南風原本院";
    position: absolute;
    top: -50%;
    background: #ffffff;
    color: var(--text);
    padding: 1px 11px;
    border: 1px solid var(--primary);
    border-radius: 26px;
}
.sp_cta a:last-child:after {
      content: "与那原西原院";
}
  
}
.c-ctaCard__tag{
  display: inline-block;
  position: relative;
  padding: 8px 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 999px;
  background: var(--subtle);
  color: var(--text);
  margin-bottom: 10px;
}

/* 下向きの三角（しっぽ） */
.c-ctaCard__tag::after{
  content: "";
  position: absolute;
  left: 45%;
  bottom: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7px 0 7px;
  border-color: #fbeae6 transparent transparent transparent;
}

@media screen and (max-width: 767px) {
.p-philosophy__title {
    font-size: 6vw;
}
  .c-centerTitle {
    font-size: 6vw;
}
  .p-closing__title {
    font-size: 6vw;
}
  .l-footer {
    padding: 20px 0 80px;
}
}

/* =========================
  Thanks Page
========================= */

.finish{
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 20px 80px;
}

.finish .icn{
  display: flex;
  justify-content: center;
  margin: 0 0 18px;
}

.finish .icn img{
  width: 76px;
  height: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(57%) sepia(14%) saturate(2034%) hue-rotate(290deg) brightness(105%) contrast(85%);
}

.finish h2{
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .02em;
  margin: 0 0 22px;
}

.finish .box_text{
  background: #fff;
  /* border: 1px solid rgba(0,0,0,.10); */
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow: 0 4px 44px rgba(16,24,40,.10);
}

.finish .box_text p{
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #222;
  text-align: center;
}

.finish .box_text p + p{
  margin-top: 12px;
}

.finish .back{
  display: flex;
  justify-content: center;
  margin: 26px 0 0;
}

.finish .com_link_text{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  width: 20rem;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: var(--primary-dark);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.finish .com_link_text:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
  opacity: .95;
}

.finish .com_link_text:active{
  transform: translateY(0);
}

/* ふわっと出る */
.fadein{
  animation: thanksFade .55s ease-out both;
}

@keyframes thanksFade{
  from{
    opacity: 0;
    transform: translateY(8px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* SP調整 */
@media screen and (max-width: 767px){
  .finish{
    padding: 44px 16px 64px;
  }

  .finish .icn img{
    width: 64px;
  }

  .finish h2{
    font-size: 22px;
    margin-bottom: 16px;
  }

  .finish .box_text{
    padding: 18px 16px;
    border-radius: 14px;
  }

  .finish .box_text p{
    font-size: 15px;
    line-height: 1.85;
  }

  .finish .com_link_text{
    width: 100%;
    max-width: 320px;
    min-height: 50px;
  }
}


.c-form__policyBox {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid #dcdcdc;
  background: #ffffff;
  border-radius: 10px;
}

.c-form__policyTitle {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: #222;
}

.c-form__policyScroll {
  height: 180px;
  overflow-y: auto;
  padding: 14px;
  border: 1px solid #cfcfcf;
  background: #fff;
  font-size: 13px;
  line-height: 1.7;
  color: #333;
}

.c-form__policyScroll p {
  margin: 0 0 12px;
}

.c-form__policyScroll strong {
  display: inline-block;
  margin-bottom: 4px;
  font-weight: 700;
  color: #111;
}

.c-form__policyNote {
  margin-top: 10px;
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .c-form__policyBox {
    padding: 14px;
  }

  .c-form__policyScroll {
    height: 160px;
    font-size: 12.5px;
  }
}

.error404 section.p-sec01 {
    text-align: center;
    margin: 2vw;
}

.error404 .c-mv__img {
    width: 5rem;
    margin: 0 auto;
    margin-top: 2rem;
}
.error404 h1.c-mv__tit {
    text-align: center;
}

.error404 a.c-btnB.c-btnB--white {
    background: var(--primary-dark);
    padding: 1rem;
    margin: 2rem 0 4rem;
    color: #fff;
}

.error404 main#notfound {
    margin: 2rem 0 6rem;
}

.error404 .p-sec01__btnArea {
    margin: 3rem 0;
}

.error404 a.c-btnB.c-btnB--white {
    background: var(--primary-dark);
    padding: 1rem;
    margin: 2rem 0 4rem;
    color: #fff;
}
.wpcf7-spinner {
  display: none;
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: relative;
  display: none;
}

.c-priceBox2 {
  max-width: 70rem;
  margin-inline: auto;
  background: var(--primary-dark);
  border: 1px solid var(--primary-dark);
  padding: 28px;
  border-radius: 10px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  color: #fff;
}
.c-pricegroup {
  background: #fff;
  border: 1px solid var(--primary-dark);
  max-width: 70rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 10px;
}
.c-priceBox2 h3 {
  text-align: center;
  font-size: 2rem;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .c-priceBox2 h3 {
    text-align: center;
    font-size: 1.3rem;
    margin: 0;
}
.c-priceBox2 {
  padding: 14px;
}
.c-pricegroup {
  margin: 0 auto;
  padding: 1rem;
}
.c-miniCard .c-point__icon {
  width: 8rem;
}
}