@charset "UTF-8";
:root {
  --pink: #f58db4;
  --pink-soft: #ffeaf2;
  --pink-pale: #fff6fa;
  --blue: #a8d9ef;
  --blue-soft: #eaf8ff;
  --lavender: #b99ce8;
  --lavender-soft: #f3ebff;
  --green: #13c95b;
  --yellow: #ffe36d;
  --ink: #594b56;
  --muted: #8d7f8a;
  --white: #fff;
  --shadow: 0 12px 28px rgba(225, 111, 158, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Zen Old Mincho", serif;
  background: radial-gradient(circle at top left, rgba(168, 217, 239, 0.32), transparent 34rem), radial-gradient(circle at bottom right, rgba(245, 141, 180, 0.22), transparent 30rem), #f7fbff;
  line-height: 1.75;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(100%, 430px);
  margin: 0 auto;
  padding-top: 64px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(122, 93, 126, 0.14);
}

.section {
  position: relative;
  padding: 58px 24px;
}

.section--pink {
  background: var(--pink-pale);
}

.section--blue {
  background: var(--blue-soft);
}

.section--lavender {
  background: linear-gradient(180deg, var(--lavender-soft), #fff);
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100000;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  width: min(100%, 430px);
  min-height: 64px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.96);
  transform: translateX(-50%);
}

.logo {
  grid-column: 2;
  justify-self: center;
  width: 100px;
}

.logo img {
  width: 100%;
  height: auto;
}

.menu-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 100001;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  outline: none;
}

.menu-toggle:focus-visible {
  outline: none;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: #363636;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle span {
  transform: translate(-50%, -50%);
}

.menu-toggle::before {
  transform: translate(-50%, -10px);
}

.menu-toggle::after {
  transform: translate(-50%, 8px);
}

.menu-toggle.is-open span {
  opacity: 0;
}

.menu-toggle.is-open::before {
  background-color: #333;
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle.is-open::after {
  background-color: #333;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  width: 100%;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(180deg, #21d96a, #09b94e);
  box-shadow: 0 10px 18px rgba(19, 201, 91, 0.28);
  font-size: 15px;
  font-weight: 900;
}

.cta::before {
  content: "LINE";
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 22px;
  color: var(--green);
  background: var(--white);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.section-title {
  margin: 0 0 20px;
  text-align: center;
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-title span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
}

.js-fade-title,
.js-fade-up {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}

.js-fade-title {
  transform: translateY(16px);
}

.js-fade-up {
  transform: translateY(28px);
}

.js-fade-title.is-visible,
.js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fade-title,
  .js-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  margin: 0;
  padding-top: 80px;
  overflow-y: auto;
  background: var(--white);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: translateX(100%);
  pointer-events: none;
  transition: transform 0.35s ease;
}

.drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.drawer-nav {
  flex: 1;
  display: grid;
  gap: 26px;
  padding: 0 70px 34px;
}

.drawer-link {
  display: block;
  width: fit-content;
  color: #333;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 700;
}

.drawer-link span {
  display: block;
  width: fit-content;
  color: transparent;
  background: linear-gradient(90deg, #f56d9f 0%, #d3a5eb 55%, #91c9f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.drawer-link small {
  display: block;
  margin-top: 7px;
  color: #333;
  font-size: 14px;
  line-height: 1.25;
}

.drawer-cta {
  margin-top: auto;
  width: 100%;
  padding: 2.5rem 2rem 48px;
  background: linear-gradient(90deg, #e78eaf 0%, #cba2df 52%, #a8c4ee 100%);
  text-align: center;
}

.drawer-line {
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
}

.drawer-line img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center;
  will-change: transform;
  animation: softPulse 2.2s ease-in-out infinite;
}

body.is-menu-open {
  overflow: hidden;
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #fff8fb 28%, #fdeff5 62%, #fde3ee 100%);
  overflow: hidden;
  padding: 12px 14px 30px;
}

.hero__inner {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

.hero__visual {
  display: block;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
}

.hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__badges {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
}

.hero__badges img {
  display: block;
  flex: 1 1 0;
  min-width: 0;
  max-width: 118px;
  width: 100%;
  height: auto;
}

.about {
  background: #fff;
  padding: 56px 20px 70px;
}

.about__inner {
  width: min(100%, 650px);
  margin: 0 auto;
  text-align: center;
}

.about__title,
.about__subtitle {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.about__title {
  margin-bottom: 40px;
}

.about__title img {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.about__subtitle img {
  display: block;
  max-width: 250px;
  height: auto;
  margin: 0 auto;
}

.about__subtitle {
  margin-top: 20px;
}

.about__body {
  margin-top: 32px;
  padding: 0 10px;
  text-align: left;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #232323;
  font-size: 16px;
  line-height: 1.85;
  text-align: center;
}

.about__paragraph {
  margin: 0 0 24px;
}

.about__paragraph:last-child {
  margin-bottom: 0;
}

.about__highlight {
  color: #fc6ca0;
  font-weight: 700;
}

.about__highlight--bg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 10px;
  background: #fc6ca0;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 420px) {
  .about {
    padding: 44px 16px 60px;
  }
  .about__title,
  .about__subtitle {
    max-width: 100%;
  }
  .about__body {
    font-size: 15px;
    line-height: 1.8;
    padding: 0;
    text-align: center;
  }
}
.works {
  position: relative;
  z-index: 2;
  background: #fff0f5;
  padding: 56px 20px 70px;
}

.works__inner {
  width: min(100%, 650px);
  margin: 0 auto;
  text-align: center;
}

.works__title,
.works__subtitle {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.works__title {
  margin-bottom: 30px;
}

.works__title img {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.works__subtitle {
  margin-bottom: 10px;
}

.works__subtitle img {
  display: block;
  width: 100%;
  height: auto;
  padding: 0 2rem 2rem;
}

.works__list {
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 0 1em;
}

.works__list img {
  display: block;
  width: 100%;
  height: auto;
}

.works__body {
  margin-top: 32px;
  padding: 0 10px;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #232323;
  font-size: 16px;
  line-height: 1.85;
}

.works__body p {
  margin: 0 0 24px;
}

.works__body p:last-child {
  margin-bottom: 0;
}

.works__recommend {
  margin-top: 50px;
}

.works__recommend-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.works__asirai {
  position: absolute;
  right: 0;
  bottom: -55px;
  max-width: 220px;
  height: auto;
  z-index: 5;
  pointer-events: none;
}

.works__emphasis {
  color: #f5659c;
  font-weight: 700;
}

@media (max-width: 420px) {
  .works {
    padding: 44px 16px 60px;
  }
  .works__title,
  .works__subtitle {
    max-width: 100%;
  }
}
.beginners {
  background: #fff;
  position: relative;
  z-index: 1;
  font-family: "Zen Maru Gothic", sans-serif;
  padding: 90px 1em 100px;
}

.beginners__inner {
  width: min(100%, 650px);
  margin: 0 auto;
  text-align: center;
}

.beginners__title {
  margin: 0 auto;
}

.beginners__title img,
.beginners__training img {
  display: block;
  width: 290px;
  height: auto;
  margin: 0 auto;
  padding-top: 40px;
}

.beginners__lead {
  margin-top: 56px;
}

.beginners__lead p,
.beginners__body p {
  margin: 0 0 24px;
  padding: 0;
  text-align: left;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #232323;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 500;
  text-align: center;
}

.beginners__lead p:last-child,
.beginners__body p:last-child {
  margin-bottom: 0;
}

.beginners__emphasis {
  color: #f5659c;
  font-weight: 700;
}

.beginners__more {
  margin-top: 44px;
  margin-bottom: 28px;
  color: #f5659c;
  font-weight: 700;
}

.beginners__training {
  margin: 0 auto;
  width: min(100%, 420px);
}

.beginners__body {
  margin-top: 64px;
  padding: 0 10px;
}

@media (max-width: 420px) {
  .beginners__lead p,
  .beginners__body p {
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: center;
  }
}
.salary {
  background: linear-gradient(90deg, #e78eaf 0%, #cba2df 52%, #a8c4ee 100%);
  padding: 90px 1em 100px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.salary__inner {
  width: min(100%, 650px);
  margin: 0 auto;
  text-align: center;
}

.salary__title {
  margin: 0 auto;
  max-width: 220px;
}

.salary__title img,
.salary__card img,
.salary__benefits img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.salary__card {
  margin-top: 40px;
  width: min(100%, 420px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.5em;
}

.salary__lead {
  margin-top: 44px;
}

.salary__lead p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.85;
  color: #fff;
  font-weight: 500;
}

.salary__lead p:last-child {
  margin-bottom: 0;
}

.salary__lead .salary__catch {
  color: #fff35a;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 1.4em;
}

.salary__benefits {
  margin-top: 100px;
  width: min(100%, 420px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5em;
}

.salary__plans {
  width: min(100%, 520px);
  margin: 56px auto 64px;
  padding: 0 6px;
}

.salary__plan {
  position: relative;
}

.salary__plan + .salary__plan {
  margin-top: 40px;
}

.salary__plan-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.salary__plan-deco {
  position: absolute;
  right: -8px;
  bottom: -34px;
  z-index: 2;
  width: 38%;
  max-width: 180px;
  height: auto;
  pointer-events: none;
}

.salary__plan-deco--soap {
  right: auto;
  left: -33px;
  bottom: -30px;
  width: 40%;
  max-width: 170px;
}

.salary__plan-deco--bottle {
  right: -8px;
  bottom: -32px;
  width: 36%;
  max-width: 170px;
}

@media (max-width: 420px) {
  .salary {
    padding: 80px 16px 90px;
  }
  .salary__lead p {
    font-size: 15px;
    line-height: 1.8;
  }
  .salary__plans {
    margin-top: 50px;
    margin-bottom: 50px;
    padding-right: 2px;
    padding-left: 2px;
  }
  .salary__plan + .salary__plan {
    margin-top: 40px;
  }
  .salary__plan-deco {
    right: -4px;
    bottom: -28px;
    width: 26%;
  }
  .salary__plan-deco--soap {
    right: auto;
    left: -4px;
    bottom: -24px;
    width: 25%;
  }
  .salary__plan-deco--bottle {
    right: -4px;
    bottom: -26px;
    width: 24%;
  }
}
.page .benefits {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 64px 20px 90px;
  background: rgba(255, 240, 245, 0.8705882353);
  font-family: "Zen Maru Gothic", sans-serif;
}

.benefits,
.benefits * {
  box-sizing: border-box;
}

.benefits__inner {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  text-align: center;
}

.benefits__head {
  width: 88%;
  max-width: 320px;
  margin: 0 auto 28px;
}

.benefits__lead {
  width: 90%;
  max-width: 330px;
  margin: 0 auto 52px;
}

.benefits__head img,
.benefits__lead img,
.benefits__card-title img,
.benefits__room-img img,
.benefits__note-img,
.benefits__deco {
  display: block;
  width: 100%;
  height: auto;
}

.benefits__card {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 36px 18px 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #fff), linear-gradient(135deg, rgba(255, 111, 163, 0.08), rgba(168, 217, 239, 0.08));
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefits__card::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  z-index: 2;
  width: 74px;
  height: 21px;
  background: #e8dcc9;
  border-radius: 2px;
  opacity: 0.86;
  box-shadow: 0 4px 10px rgba(160, 120, 88, 0.08);
  transform: translateX(-50%) rotate(-1.5deg);
}

.benefits__card-title {
  width: 92%;
  max-width: 292px;
  margin: 0 auto 26px;
}

.benefits__room-img {
  margin: 0 auto 0;
}

.benefits__room-img img {
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(126, 103, 112, 0.08);
}

.benefits__text {
  width: 100%;
  margin-top: 30px;
  color: #333333;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0;
  text-align: center;
}

.benefits__text p {
  margin: 0 0 18px;
}

.benefits__text p:last-child {
  margin-bottom: 0;
}

.benefits__text span {
  color: #ff6fa3;
  font-weight: 700;
}

.benefits__quote {
  color: #b7a2d9;
  font-size: 15px;
  line-height: 1.8;
}

.benefits__merit {
  margin-top: 34px;
}

.benefits__merit img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.benefits__note {
  position: relative;
  margin-top: 38px;
  padding: 0 48px 30px 0;
}

.benefits__note-img {
  position: relative;
  z-index: 1;
  width: 125%;
  margin: 0 auto 0 0;
  filter: drop-shadow(0 12px 18px rgba(175, 126, 148, 0.14));
}

.benefits__deco {
  position: absolute;
  right: 0;
  bottom: 511px;
  z-index: 3;
  width: 35%;
  max-width: 150px;
  pointer-events: none;
}

@media (max-width: 374px) {
  .benefits__inner {
    padding-right: 14px;
    padding-left: 14px;
  }
  .benefits__card {
    padding-right: 16px;
    padding-left: 16px;
  }
  .benefits__text {
    font-size: 15px;
  }
  .benefits__quote {
    font-size: 14px;
  }
  .benefits__note {
    padding-right: 42px;
  }
  .benefits__deco {
    right: 8px;
    bottom: 72px;
    width: 38%;
  }
}
.flow {
  background: #eaf3ff;
  padding: 90px 0 100px;
  overflow: hidden;
  font-family: "Zen Maru Gothic", sans-serif;
}

.flow__inner {
  width: min(100%, 650px);
  margin: 0 auto;
  text-align: center;
}

.flow__title {
  margin: 0 auto;
  max-width: 180px;
}

.flow__title img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.flow__box {
  position: relative;
  margin-top: 48px;
  margin-left: 1.5em;
  margin-right: -1em;
  width: calc(100% - 1.5em);
  padding: 60px 2em 48px;
  background: #fff;
  border: none;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
}

.flow__box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 30px 0 0 30px;
  background: linear-gradient(135deg, #7eb6ed 0%, #b9a7ea 45%, #f2609b 100%);
  pointer-events: none;
  z-index: 1;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* 右側のボーダーだけ消す */
.flow__box::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  bottom: 2px;
  width: 3px;
  background: #fff;
  pointer-events: none;
  z-index: 2;
}

.flow__box > * {
  position: relative;
  z-index: 3;
}

.flow__step img,
.flow__cta img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.flow__cta img {
  transform-origin: center;
  will-change: transform;
  animation: softPulse 2.2s ease-in-out infinite;
}

.flow__cta {
  margin-top: 24px;
}

.flow__arrow {
  margin: 36px auto;
  width: min(100%, 40px);
}

.flow__arrow img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 420px) {
  .flow__box {
    padding: 70px 2em 36px;
  }
  .flow__arrow {
    margin: 50px auto;
    width: 35px;
  }
}
.faq {
  background: #fff;
  padding: 90px 1em 100px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.faq__inner {
  width: min(100%, 650px);
  margin: 0 auto;
  text-align: center;
}

.faq__title {
  margin: 0 auto;
  max-width: 110px;
}

.faq__title img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.faq__list {
  margin-top: 56px;
}

.faq__item {
  border: 2px solid #f5659c;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.faq__item + .faq__item {
  margin-top: 16px;
}

.faq__question {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 10px 50px 10px 20px;
  background: #fff0f5;
  color: #f5659c;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
}

.faq__question::-webkit-details-marker,
.faq__question::marker {
  display: none;
}

.faq__question::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #f5659c;
  border-bottom: 2px solid #f5659c;
  border-radius: 0 0 3px 0;
  transform: translateY(-65%) rotate(45deg);
}

.faq__item[open] .faq__question::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq__answer {
  padding: 22px 24px 28px;
  background: #fff;
  color: #333;
  line-height: 1.85;
  text-align: left;
}

.faq__answer p {
  margin: 0;
}

.faq__answer span {
  color: #f5659c;
  font-weight: 700;
}

@media (max-width: 430px) {
  .faq {
    padding: 72px 16px 80px;
  }
  .faq__question {
    padding: 10px 44px 10px 16px;
  }
  .faq__question::after {
    right: 18px;
    width: 8px;
    height: 8px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }
  .faq__answer {
    padding: 18px 18px 22px;
  }
}
.faq__answer {
  overflow: hidden;
  transition: height 0.35s ease, opacity 0.35s ease;
  will-change: height, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .faq__answer {
    transition: none;
    will-change: auto;
  }
}
.treatment {
  background: #fff;
  padding: 90px 1em 100px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.treatment__inner {
  width: min(100%, 650px);
  margin: 0 auto;
  text-align: center;
}

.treatment__title {
  margin: 0 auto;
  max-width: 320px;
}

.treatment__title img,
.treatment__card img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.treatment__cards {
  margin-top: 40px;
  display: grid;
  gap: 24px;
  width: min(100%, 420px);
  margin-left: auto;
  margin-right: auto;
}

.treatment__card {
  width: 100%;
}

@media (max-width: 420px) {
  .treatment {
    padding: 80px 16px 90px;
  }
}
.work-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.work-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 15px;
  background: var(--white);
  border: 1px solid #ffd9e8;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(225, 111, 158, 0.11);
}

.work-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: linear-gradient(145deg, var(--pink), var(--lavender));
  border-radius: 50%;
  font-weight: 900;
}

.work-card h3 {
  margin: 0 0 3px;
  color: #e86f9f;
  font-size: 15px;
}

.work-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.photo-card {
  overflow: hidden;
  margin-top: 22px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-card img {
  height: 190px;
  object-fit: cover;
}

.photo-card div {
  padding: 16px;
}

.photo-card h3 {
  margin: 0 0 6px;
  color: #e86f9f;
  font-size: 17px;
}

.photo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(185, 156, 232, 0.16);
}

.step b {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--white);
  background: var(--lavender);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.step p {
  margin: 0;
  font-size: 13px;
}

.salary-box {
  margin-top: 22px;
  padding: 20px 16px;
  color: var(--white);
  background: linear-gradient(145deg, #f58db4, #b99ce8);
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
}

.salary-box small {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
}

.salary-box strong {
  color: var(--yellow);
  font-size: 38px;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(129, 83, 123, 0.15);
}

.salary-box span {
  font-weight: 900;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.benefit {
  min-height: 102px;
  padding: 13px 9px;
  background: var(--white);
  border: 1px solid #ffd6e5;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(225, 111, 158, 0.1);
}

.benefit b {
  display: block;
  color: #e86f9f;
  font-size: 14px;
}

.benefit span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.treatment-list {
  display: grid;
  gap: 11px;
  margin-top: 22px;
}

.treatment {
  padding: 80px 16px 90px;
  background: var(--white);
  border-radius: 8px;
  color: #5b7a8a;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 8px 18px rgba(87, 174, 214, 0.12);
}

.flow-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.flow-card {
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.flow-card img {
  height: 154px;
  object-fit: cover;
}

.flow-body {
  padding: 15px;
}

.flow-label {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  margin-bottom: 7px;
  padding: 0 10px;
  color: var(--white);
  background: linear-gradient(145deg, var(--pink), var(--lavender));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.flow-card h3 {
  margin: 0 0 5px;
  color: #e86f9f;
  font-size: 16px;
}

.flow-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.qa {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

details {
  background: var(--white);
  border: 1px solid #ffd6e5;
  border-radius: 8px;
  box-shadow: 0 7px 15px rgba(225, 111, 158, 0.08);
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  color: #d95d91;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 14px 0;
  color: #363636;
  font-size: 13px;
}

.recruit {
  background: #fff;
  padding: 90px 1em 100px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.recruit__inner {
  width: min(100%, 650px);
  margin: 0 auto;
  padding: 0 0.5em;
}

.recruit__title {
  text-align: center;
  width: 230px;
  margin: 0 auto;
  text-align: center;
}

.recruit__title img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.recruit__list {
  margin: 56px 0 0;
  padding: 0;
}

.recruit__item + .recruit__item {
  margin-top: 28px;
}

.recruit__term {
  margin: 0;
  padding: 16px 20px;
  border-radius: 8px;
  background: #fff0f5;
  color: #f5659c;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  font-size: 14px;
}

.recruit__desc {
  margin: 18px 0 0;
  padding: 0 8px;
  color: #333;
  line-height: 1.9;
  text-align: left;
}

.recruit__desc p {
  margin: 0;
}

.recruit__desc p + p {
  margin-top: 14px;
}

.recruit__note {
  display: block;
  margin-top: 12px;
  color: #7d7d7d;
  font-size: 0.92em;
  line-height: 1.7;
}

@media (max-width: 430px) {
  .recruit {
    padding: 72px 16px 80px;
  }
  .recruit__term {
    padding: 14px 16px;
  }
  .recruit__desc {
    margin-top: 16px;
    padding: 0 4px;
    font-size: 14px;
  }
  .recruit__item + .recruit__item {
    margin-top: 24px;
  }
}
.p-cta-benefit {
  position: relative;
  overflow: hidden;
  padding: 28px 14px 32px;
  background-image: url("../img/benefit-bg.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center top;
}

.p-cta-benefit__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

.p-cta-benefit__body {
  display: grid;
  gap: 30px;
  padding: 30px 20px;
}

.p-cta-benefit__cta,
.p-cta-benefit__benefit {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.p-cta-benefit__cta img,
.p-cta-benefit__benefit img {
  display: block;
  width: 100%;
  height: auto;
}

.p-cta-benefit__cta img {
  transform-origin: center;
  will-change: transform;
  animation: softPulse 2.2s ease-in-out infinite;
}

@media (min-width: 430px) {
  .p-cta-benefit {
    padding: 34px 18px 38px;
  }
  .p-cta-benefit__body {
    gap: 22px;
  }
}
.footer {
  background-image: url("../img/footer_bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  padding: 120px 1em 80px;
}

.footer__inner {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.footer__line {
  padding: 0 2em;
}

.footer__line img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
  transform-origin: center;
  will-change: transform;
  animation: softPulse 2.2s ease-in-out infinite;
}

.footer__logo {
  margin-top: 56px;
}

.footer__logo img {
  display: block;
  width: 52%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
}

@keyframes softPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer__line img,
  .drawer-line img,
  .p-cta-benefit__cta img,
  .flow__cta img {
    animation: none;
  }
}
@media (max-width: 430px) {
  .footer {
    padding: 100px 16px 30px;
  }
  .footer__line img {
    max-width: 100%;
  }
  .footer__logo {
    margin-top: 42px;
  }
  .footer__logo img {
    width: 50%;
  }
}
/* form page */
.form-page {
  background: radial-gradient(circle at top left, rgba(168, 217, 239, 0.28), transparent 34rem), radial-gradient(circle at bottom right, rgba(245, 141, 180, 0.2), transparent 30rem), #f7fbff;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
}
.form-page .wrap {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(122, 93, 126, 0.14);
}
.form-page #header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 14px 64px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(245, 141, 180, 0.18);
}
.form-page #header h1 {
  width: 170px;
  margin: 0 auto;
}
.form-page .pback {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  min-width: 64px;
  min-height: 42px;
  color: var(--pink);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.form-page .pback .icon {
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  fill: currentColor;
  transform: rotate(90deg);
}
.form-page #footer {
  padding: 42px 24px 52px;
  text-align: center;
  background: linear-gradient(180deg, #fff, var(--pink-pale));
}
.form-page #footer .logo {
  width: 150px;
  margin: 0 auto;
}

.form-page *::placeholder {
  color: rgba(245, 141, 180, 0.6);
}

.form-page input,
.form-page textarea,
.form-page select,
.form-page button {
  font-family: inherit;
}

.page-entry {
  padding: 42px 0 56px;
}
.page-entry .main_title {
  padding: 0 24px;
  margin: 0 0 28px;
  color: var(--pink);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-align: center;
}
.page-entry .main_title span {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.page-entry .txt_box {
  padding: 0 24px 24px;
  text-align: center;
}
.page-entry .txt_box p {
  line-height: 1.8;
}
.page-entry small {
  font-size: 1.2rem;
  color: var(--muted);
}
.page-entry form {
  padding: 6px 22px 0;
}
.page-entry form > div,
.page-entry .form_box {
  padding: 14px 0;
}

.formStep {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 28px;
  color: #d7cbd4;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}
.formStep::before {
  content: "";
  position: absolute;
  left: 16.666%;
  right: 16.666%;
  top: 7px;
  height: 2px;
  background: #eadde6;
  z-index: 0;
}
.formStep li {
  position: relative;
  z-index: 1;
  flex: 1;
}
.formStep .circle {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 auto 9px;
  border-radius: 50%;
  background: #eadde6;
  box-shadow: 0 0 0 5px #fff;
}
.formStep .txt {
  display: block;
  white-space: nowrap;
}
.formStep.step1 li:first-child, .formStep.step2 li:not(:last-child), .formStep.step3 li {
  color: var(--pink);
}
.formStep.step1 li:first-child .circle, .formStep.step2 li:not(:last-child) .circle, .formStep.step3 li .circle {
  background: linear-gradient(135deg, var(--pink), var(--lavender));
}

.form_label {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.required {
  display: inline-block;
  margin: 0 0 0 0.7rem;
  padding: 0.28em 0.55em;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  vertical-align: middle;
}

.form-control,
select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(245, 141, 180, 0.55);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 1.45rem;
  line-height: 1.45;
  padding: 0.92em 1em;
  box-shadow: 0 8px 18px rgba(245, 141, 180, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.form-control:focus,
select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(245, 141, 180, 0.14);
  background: #fffdfd;
}

textarea.form-control {
  min-height: 11em;
  resize: vertical;
}

.selbtn,
.seldate,
.seltime {
  position: relative;
}

.selbtn {
  width: 100%;
}
.selbtn .icon {
  position: absolute;
  right: 14px;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  fill: rgba(245, 141, 180, 0.7);
  transform: translateY(-50%);
  pointer-events: none;
}

select {
  appearance: none;
  padding-right: 42px;
}

.seldate {
  margin-bottom: 10px;
}
.seldate .icon {
  position: absolute;
  right: 14px;
  top: 50%;
  width: 1.6rem;
  height: 1.6rem;
  fill: rgba(245, 141, 180, 0.7);
  transform: translateY(-50%);
  pointer-events: none;
}

.seltime {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.seltime .selbtn {
  min-width: 0;
}

.form-control.error-input {
  border-color: #ff6f8f;
  background: #fff1f4;
}

.error,
.error_messe p {
  color: #e45f86;
  font-weight: 700;
}

.error {
  margin-top: 0.4em;
  font-size: 1.1rem;
}

.error_messe {
  padding: 24px 22px;
  text-align: center;
}
.error_messe p {
  font-size: 1.3rem;
  line-height: 1.8;
}

strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.65;
}

.tableConf {
  padding: 0 22px 24px;
}
.tableConf table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tableConf th,
.tableConf td {
  display: block;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(245, 141, 180, 0.15);
}
.tableConf th {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 700;
}
.tableConf td {
  padding-top: 4px;
  color: var(--ink);
  font-size: 1.35rem;
}

.entry_btn,
.btn_confirm,
.btn_submit,
.btn-back,
.box_error .btn2 {
  text-align: center;
}

.btn_confirm,
.btn_submit,
.btn-back,
.box_error .btn2 {
  width: min(100%, 320px);
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  color: #fff;
  box-shadow: 0 12px 24px rgba(245, 141, 180, 0.24);
  overflow: hidden;
}
.btn_confirm input,
.btn_confirm a,
.btn_submit input,
.btn_submit a,
.btn-back input,
.btn-back a,
.box_error .btn2 input,
.box_error .btn2 a {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 1.05em 1.2em;
  cursor: pointer;
}

.form_box.conf {
  display: flex;
  gap: 12px;
  align-items: center;
}
.form_box.conf .btn_submit,
.form_box.conf .btn-back {
  flex: 1;
  width: auto;
}

.ui-datepicker {
  display: none;
  z-index: 1000 !important;
  padding: 12px;
  border: 2px solid var(--pink);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.5em 0.5em 1em;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 0.5em;
  width: 2em;
  height: 2em;
  cursor: pointer;
}
.ui-datepicker .ui-datepicker-prev {
  right: 2.4em;
}
.ui-datepicker .ui-datepicker-next {
  right: 0.4em;
}
.ui-datepicker .ui-icon {
  display: block;
  width: 2em;
  height: 2em;
  overflow: hidden;
  text-indent: -9999px;
}
.ui-datepicker .ui-icon::before {
  content: "›";
  display: block;
  color: var(--pink);
  font-size: 2rem;
  line-height: 1;
  text-indent: 0;
  text-align: center;
}
.ui-datepicker .ui-datepicker-prev .ui-icon::before {
  content: "‹";
}
.ui-datepicker table {
  border-collapse: collapse;
}
.ui-datepicker th {
  padding: 0 0 0.7em;
  text-align: center;
}
.ui-datepicker td {
  padding: 0.2em;
}
.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4em;
  border-radius: 50%;
  color: var(--ink);
  text-align: center;
}
.ui-datepicker .ui-state-highlight {
  background: var(--pink-soft);
}
.ui-datepicker .ui-state-active {
  background: var(--pink);
  color: #fff !important;
}

@media (max-width: 360px) {
  .page-entry .main_title {
    font-size: 3rem;
  }
  .page-entry form {
    padding-inline: 18px;
  }
  .formStep {
    font-size: 0.95rem;
  }
}
.page-thanks {
  padding: 42px 0 56px;
}
.page-thanks .main_title {
  padding: 0 24px;
  margin: 0 0 28px;
  color: var(--pink);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-align: center;
}
.page-thanks .main_title span {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.page-thanks .txt_box {
  width: calc(100% - 44px);
  margin: 0 auto;
  padding: 28px 22px 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  text-align: center;
}
.page-thanks .thanks-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 4px auto 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(245, 141, 180, 0.22);
}
.page-thanks strong {
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1.65;
  letter-spacing: 0.04em;
}
.page-thanks .fin {
  margin: 10px 0 22px;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1.8;
  text-align: center;
}
.page-thanks .btn-back {
  display: block;
  width: min(100%, 320px);
  margin: 22px auto 0;
  padding: 1.05em 1.2em;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  color: #fff;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 12px 24px rgba(245, 141, 180, 0.24);
}

/* confirmation page polish */
.page-confirm .txt_box {
  padding-top: 4px;
}
.page-confirm .txt_box .caps {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--pink);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.page-confirm .tableConf {
  padding: 0 22px 34px;
}
.page-confirm .tableConf table {
  margin-top: 8px;
}
.page-confirm .tableConf th {
  color: var(--pink);
  background: rgba(255, 234, 242, 0.65);
  font-size: 1.25rem;
}
.page-confirm .tableConf td {
  background: #fff;
  font-size: 1.45rem;
  font-weight: 700;
  word-break: break-word;
}
.page-confirm .form_box.conf {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 12px;
  align-items: center;
  padding: 24px 0 0;
}
.page-confirm .form_box.conf .pback {
  position: static;
  transform: none;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(245, 141, 180, 0.35);
  border-radius: 999px;
  background: #fff;
  color: var(--pink);
  box-shadow: 0 8px 18px rgba(245, 141, 180, 0.08);
  font-size: 1.35rem;
}
.page-confirm .form_box.conf .btn_submit {
  margin: 0;
}

@media (max-width: 360px) {
  .page-confirm .form_box.conf {
    grid-template-columns: 1fr;
  }
}
.page-confirm .form_box.conf .btn_submit {
  width: 100%;
  max-width: none;
}

@media (min-width: 760px) {
  body {
    padding: 34px 0;
  }
  .page {
    border-radius: 18px;
  }
}
@media (max-width: 360px) {
  .section {
    padding-right: 18px;
    padding-left: 18px;
  }
  .hero {
    padding-right: 14px;
    padding-left: 14px;
  }
  .site-header {
    min-height: 60px;
    padding-right: 12px;
    padding-left: 12px;
  }
  .logo {
    width: 100px;
  }
  .hero-copy {
    right: 14px;
    width: 82px;
    font-size: 18px;
  }
  .hero h1 {
    font-size: 21px;
  }
  .hero h1 strong {
    font-size: 33px;
  }
  .recruit-row {
    grid-template-columns: 82px 1fr;
  }
}
body {
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
}

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 1000;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
  width: min(100%, 430px);
  max-width: 430px;
  padding: 10px 8px calc(10px + env(safe-area-inset-bottom));
  background: rgba(245, 245, 245, 0.96);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}

.floating-cta__item {
  display: block;
  flex: 0 0 auto;
  min-width: 0;
  padding: 0;
  margin: 0;
  color: inherit;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  line-height: 0;
  text-decoration: none;
}

.floating-cta__item--tel,
.floating-cta__item--form {
  width: 64px;
}

.floating-cta__item--line {
  flex: 1 1 auto;
  min-width: 0;
}

.floating-cta__image {
  display: block;
  width: 100%;
  height: auto;
}

.floating-cta__image--icon {
  width: 100%;
  max-width: 64px;
}

.floating-cta__image--line {
  width: 100%;
  max-width: none;
}

.floating-cta__icon,
.floating-cta__text {
  display: none;
}

@media (max-width: 390px) {
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }
  .floating-cta {
    gap: 6px;
    padding: 9px 7px calc(9px + env(safe-area-inset-bottom));
  }
  .floating-cta__item--tel,
  .floating-cta__item--form {
    width: 60px;
  }
  .floating-cta__image--icon {
    max-width: 60px;
  }
}
@media (max-width: 360px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }
  .floating-cta {
    gap: 5px;
    padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
  }
  .floating-cta__item--tel,
  .floating-cta__item--form {
    width: 56px;
  }
  .floating-cta__image--icon {
    max-width: 56px;
  }
}

/*# sourceMappingURL=style.css.map */
