@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;
  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: relative;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  min-height: 64px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.96);
}

.logo {
  grid-column: 2;
  justify-self: center;
  width: 100px;
}

.logo img {
  width: 100%;
  height: auto;
}

.menu-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 99999;
  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: -moz-fit-content;
  width: fit-content;
  color: #333;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 700;
}

.drawer-link span {
  display: block;
  width: -moz-fit-content;
  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;
  -o-object-fit: contain;
     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;
}

.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: 6px 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;
}

.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: 15px;
    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: 40px;
  width: min(100%, 420px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5em;
}

@media (max-width: 420px) {
  .salary {
    padding: 80px 16px 90px;
  }
  .salary__lead p {
    font-size: 15px;
    line-height: 1.8;
  }
}
.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;
  -o-object-fit: cover;
     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;
  -o-object-fit: cover;
     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;
  }
}
.fixed-cta {
  position: fixed;
  z-index: 5;
  right: max(14px, (100vw - 430px) / 2 + 14px);
  bottom: 14px;
  left: max(14px, (100vw - 430px) / 2 + 14px);
  max-width: 402px;
  margin: 0 auto;
  padding: 9px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(82, 59, 84, 0.18);
  backdrop-filter: blur(10px);
}

.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 60px;
  }
  .footer__line img {
    max-width: 100%;
  }
  .footer__logo {
    margin-top: 42px;
  }
  .footer__logo img {
    width: 50%;
  }
}
@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;
  }
}/*# sourceMappingURL=style.css.map */