/* =============================================================================
   Project
   ============================================================================= */


/* --------------------------------------------------
   p-hero（トップページ メインビジュアル）
   -------------------------------------------------- */

.p-hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  background-color: var(--color-sub);
}

.p-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
}

.p-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-bottom: 2.5rem;
}

.p-hero__swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.p-hero__swiper .swiper-wrapper {
  height: 100%;
}

.p-hero__swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.p-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.p-hero__text-box {
  display: inline-block;
  text-align: left;
  max-width: 36rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(2px);
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
  opacity: 0;
  animation: hero-fade-up 1s ease forwards;
  animation-delay: 0.4s;
}

.p-hero__heading {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
  font-size: 2rem;
  line-height: 1.6;
  opacity: 0;
  animation: hero-fade-up 1s ease forwards;
  animation-delay: 0.7s;
}

.p-hero__subtext {
  font-size: 1rem;
  color: #374151;
  font-weight: 500;
  line-height: 1.7;
  opacity: 0;
  animation: hero-fade-up 1s ease forwards;
  animation-delay: 1s;
}

.p-hero__accent-text {
  display: inline;
  color: #ff9a70;
  font-size: 1.2em;
}

.p-hero__accent-cursor {
  display: inline-block;
  width: 2px;
  background: #ff9a70;
  margin-left: 1px;
  vertical-align: middle;
  height: 1em;
  animation: cursor-blink 0.7s steps(1) 3;
  opacity: 0;
}

.p-hero__sasaeru {
  display: block;
  text-align: right;
  width: 100%;
}

.p-hero .swiper-pagination {
  z-index: 4;
  bottom: 1rem;
}

.p-hero .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}

.p-hero .swiper-pagination-bullet-active {
  background: var(--color-accent);
  opacity: 1;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 768px) {
  .p-hero {
    min-height: 70svh;
  }

  .p-hero__swiper {
    height: 70svh;
  }

  .p-hero__swiper .swiper-slide {
    height: 70svh;
  }

  .p-hero__text-box {
    padding: 1.2rem;
  }

  .p-hero__heading {
    font-size: 0.9rem;
  }

  .p-hero__subtext {
    font-size: 0.7rem;
  }

  .p-hero__accent-text {
    font-size: 1.6rem;
  }
}


/* --------------------------------------------------
   p-news（最新情報）
   -------------------------------------------------- */

.p-news {
  padding: 3rem 0;
  background-color: rgba(232, 248, 251, 0.3);
  border-bottom: 1px solid #f3f4f6;
}

.p-news__inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .p-news__inner {
    flex-direction: row;
    align-items: baseline;
  }
}

.p-news__label {
  margin-bottom: 1rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .p-news__label {
    margin-bottom: 0;
    margin-right: 3rem;
  }
}

.p-news__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  display: flex;
  align-items: center;
}

.p-news__heading-icon {
  margin-right: 0.5rem;
}

.p-news__list {
  flex: 1;
  width: 100%;
}

.p-news__item {
  display: flex;
  flex-direction: column;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid #f3f4f6;
  text-decoration: none;
  transition: background-color 0.15s ease;
  border-radius: 0.5rem;
  margin: 0 -0.5rem;
}

.p-news__item:last-child {
  border-bottom: none;
}

.p-news__item:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .p-news__item {
    flex-direction: row;
    align-items: center;
  }
}

.p-news__date {
  font-size: 0.875rem;
  color: #9ca3af;
  font-weight: 500;
}

@media (min-width: 768px) {
  .p-news__date {
    width: 8rem;
    flex-shrink: 0;
  }
}

.p-news__category {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  background-color: rgba(54, 186, 211, 0.1);
  color: var(--color-accent);
  border-radius: 0.25rem;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

@media (min-width: 768px) {
  .p-news__category {
    margin-bottom: 0;
  }
}

.p-news__title {
  color: #374151;
  font-weight: 700;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-news__item:hover .p-news__title {
  color: var(--color-accent);
}


/* --------------------------------------------------
   p-strength（強み）
   -------------------------------------------------- */

.p-strength {
  padding: 5rem 0;
  background-color: #fff;
  overflow: hidden;
  text-align: center;
}

.p-strength__heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1f2937;
}

@media (min-width: 768px) {
  .p-strength__heading {
    font-size: 1.875rem;
  }
}

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

@media (min-width: 768px) {
  .p-strength__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-strength__card {
  padding: 2rem;
  background-color: var(--color-sub);
  border-radius: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #fff;
}

.p-strength__card:nth-child(2) {
  transition-delay: 0.2s;
}

.p-strength__card:nth-child(3) {
  transition-delay: 0.4s;
}

.p-strength__icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--color-accent);
  color: #fff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.p-strength__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.p-strength__card-text {
  color: #4b5563;
  line-height: 1.625;
  font-size: 0.875rem;
}


/* --------------------------------------------------
   p-info（案内・事業所概要）
   -------------------------------------------------- */

.p-info {
  padding: 4rem 0;
  background-color: #fff;
}

.p-info__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .p-info__inner {
    flex-direction: row;
  }
}

.p-info__box {
  flex: 1;
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: 2.5rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .p-info__box {
    padding: 2.5rem;
  }
}

.p-info__heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.p-info__heading-bar {
  width: 0.5rem;
  height: 2rem;
  background-color: var(--color-accent);
  margin-right: 1rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.p-info__table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-info__row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 0.75rem;
}

.p-info__label {
  font-weight: 700;
  color: #4b5563;
}

.p-info__value {
  font-weight: 700;
  font-size: 1.125rem;
}

.p-info__value--holiday {
  color: #ef4444;
  font-weight: 700;
}

.p-info__badges {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.p-info__badge {
  background-color: rgba(54, 186, 211, 0.1);
  color: var(--color-accent);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid rgba(54, 186, 211, 0.2);
}


/* --------------------------------------------------
   p-about（事業所概要テーブル）
   -------------------------------------------------- */

.p-about__table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .p-about__table {
    font-size: 1rem;
  }
}

.p-about__row {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.p-about__row--sep {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.p-about__label {
  color: #6b7280;
}

.p-about__value {
  font-weight: 700;
}

.p-about__value--address {
  color: #374151;
  line-height: 1.625;
  font-weight: 500;
}

.p-about__value--corp {
  font-weight: 700;
  color: #374151;
}


/* --------------------------------------------------
   p-recruit（採用セクション on トップページ）
   -------------------------------------------------- */

.p-recruit {
  position: relative;
  padding: 4rem 0;
  background-color: var(--color-accent);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.p-recruit__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.p-recruit__inner {
  position: relative;
  z-index: 1;
}

.p-recruit__heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .p-recruit__heading {
    font-size: 2.25rem;
  }
}

.p-recruit__desc {
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.625;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .p-recruit__desc {
    font-size: 1.25rem;
  }
}

.p-recruit__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.p-recruit__note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.p-recruit__br-pc {
  display: none;
}

@media (min-width: 768px) {
  .p-recruit__br-pc {
    display: inline;
  }
}


/* --------------------------------------------------
   p-footer（フッター）
   -------------------------------------------------- */

.p-footer {
  background-color: #e8f8fb;
  border-top: 2px solid #b0dfe8;
}

.p-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.p-footer__logo {
  margin-bottom: 2rem;
}

.p-footer__logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
  filter: opacity(0.85);
}

.p-footer__site-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
}

.p-footer__site-name-icon {
  margin-right: 0.5rem;
}

.p-footer__description {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.p-footer__contact {
  max-width: 28rem;
  margin: 0 auto 1rem;
  padding: 2rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 4px 20px rgba(54, 186, 211, 0.1);
  border: 1px solid #b0dfe8;
}

.p-footer__contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
  display: block;
}

.p-footer__tel {
  font-size: 1.875rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  transition: opacity 0.15s ease;
  display: inline-flex;
  align-items: center;
}

.p-footer__tel:hover {
  opacity: 0.75;
}

@media (min-width: 768px) {
  .p-footer__tel {
    font-size: 2.25rem;
  }
}

.p-footer__tel-icon {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.p-footer__hours {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.75rem;
}

.p-copyright {
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
  padding: 1rem 0;
  background-color: #e8f8fb;
  border-top: 1px solid #b0dfe8;
}


/* --------------------------------------------------
   p-recruit-hero（採用ページ ヒーロー）
   -------------------------------------------------- */

.p-recruit-hero {
  position: relative;
  background-color: #fdf2f7;
  padding-top: 7rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .p-recruit-hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.p-recruit-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

.p-recruit-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .p-recruit-hero__content {
    flex-direction: row;
  }
}

.p-recruit-hero__text {
  flex: 1;
  min-width: 0;
}

.p-recruit-hero__badge {
  display: inline-block;
  background: #fff;
  color: #f2a2c0;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  border: 1px solid #fce7f3;
}

.p-recruit-hero__title {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #1f2937;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .p-recruit-hero__title {
    font-size: 3rem;
  }
}

.p-recruit-hero__desc {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .p-recruit-hero__desc {
    font-size: 1.25rem;
  }
}

.p-recruit-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #374151;
}

.p-recruit-hero__tag {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.p-recruit-hero__tag-icon {
  margin-right: 0.5rem;
  color: #f2a2c0;
}

.p-recruit-hero__deco {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: -5rem;
  margin-top: -5rem;
  width: 24rem;
  height: 24rem;
  background-color: #f2a2c0;
  opacity: 0.1;
  border-radius: 60% 40% 55% 45% / 45% 60% 40% 55%;
}

/* ブロブシェイプ */
@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 55% 45% / 55% 45% 60% 40%; }
  33%       { border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; }
  66%       { border-radius: 55% 45% 65% 35% / 40% 60% 45% 55%; }
}

@keyframes blob-morph-outer {
  0%, 100% { border-radius: 50% 60% 40% 65% / 60% 45% 55% 40%; }
  33%       { border-radius: 65% 40% 60% 45% / 45% 60% 40% 55%; }
  66%       { border-radius: 40% 65% 50% 55% / 55% 40% 65% 45%; }
}

@keyframes blob-morph-2 {
  0%, 100% { border-radius: 45% 55% 65% 35% / 55% 45% 60% 40%; }
  33%       { border-radius: 60% 40% 45% 55% / 40% 65% 35% 60%; }
  66%       { border-radius: 35% 65% 55% 45% / 65% 35% 50% 50%; }
}

@keyframes blob-morph-outer-2 {
  0%, 100% { border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%; }
  33%       { border-radius: 60% 40% 40% 60% / 40% 60% 45% 55%; }
  66%       { border-radius: 55% 45% 60% 40% / 45% 55% 40% 60%; }
}

.p-recruit-hero__blob-wrap {
  position: relative;
  width: 380px;
  height: 420px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .p-recruit-hero__blob-wrap {
    width: 220px;
    height: 250px;
    margin: 0 auto;
  }
}

.p-recruit-hero__blob-outer {
  position: absolute;
  inset: -14px;
  background: rgba(242, 162, 192, 0.2);
  animation: blob-morph-outer 9s ease-in-out infinite;
  z-index: 0;
}

.p-recruit-hero__blob-inner {
  position: relative;
  width: 100%;
  height: 100%;
  animation: blob-morph 8s ease-in-out infinite;
  overflow: hidden;
  z-index: 1;
}

.p-recruit-hero__blob-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* --------------------------------------------------
   p-recruit-points（4つのおすすめポイント）
   -------------------------------------------------- */

.p-recruit-points {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .p-recruit-points {
    padding: 3rem 0;
  }
}

.p-recruit-points__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.p-recruit-points__heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .p-recruit-points__heading {
    font-size: 1.875rem;
  }
}

.p-recruit-points__heading-accent {
  color: #f2a2c0;
}

.p-recruit-points__heading-br {
  display: block;
}

@media (min-width: 768px) {
  .p-recruit-points__heading-br {
    display: none;
  }
}

.p-recruit-points__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .p-recruit-points__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .p-recruit-points__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-recruit-points__card {
  border-radius: 2rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  border-bottom: 4px solid #f2a2c0;
}

.p-recruit-points__icon {
  width: 3rem;
  height: 3rem;
  background-color: #fdf2f7;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #f2a2c0;
  font-size: 1.5rem;
}

.p-recruit-points__title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.p-recruit-points__text {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.625;
}


/* --------------------------------------------------
   p-recruit-salary（給与詳細）
   -------------------------------------------------- */

.p-recruit-salary {
  padding: 5rem 0;
  background-color: #fdf2f7;
}

@media (max-width: 768px) {
  .p-recruit-salary {
    padding: 3rem 0;
  }
}

.p-recruit-salary__inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.p-recruit-salary__box {
  background: #fff;
  border-radius: 3rem;
  padding: 2.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid #fff;
}

@media (min-width: 768px) {
  .p-recruit-salary__box {
    padding: 4rem;
  }
}

.p-recruit-salary__heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .p-recruit-salary__heading {
    font-size: 1.875rem;
  }
}

.p-recruit-salary__heading-accent {
  color: #f2a2c0;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.p-recruit-salary__heading-br {
  display: block;
}

@media (min-width: 768px) {
  .p-recruit-salary__heading-br {
    display: none;
  }
}

.p-recruit-salary__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .p-recruit-salary__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-recruit-salary__card {
  padding: 1.5rem;
  background-color: #f9fafb;
  border-radius: 1rem;
  text-align: center;
}

.p-recruit-salary__card-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.p-recruit-salary__card-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.p-recruit-salary__amount-prefix {
  color: #6b7280;
  font-size: 0.875rem;
  margin-right: 0.25rem;
}

.p-recruit-salary__amount-num {
  font-size: 2.25rem;
  font-weight: 900;
  color: #f2a2c0;
}

.p-recruit-salary__amount-unit {
  font-size: 1.125rem;
  font-weight: 700;
  margin-left: 0.25rem;
  color: #1f2937;
}


/* --------------------------------------------------
   p-recruit-allowances（手当一覧）
   -------------------------------------------------- */

.p-recruit-allowances {
  margin-bottom: 3rem;
}

.p-recruit-allowances__heading {
  font-weight: 700;
  color: #1f2937;
  border-left: 4px solid #f2a2c0;
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.p-recruit-allowances__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .p-recruit-allowances__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-recruit-allowances__item {
  background: #fff;
  border: 1px solid #f3f4f6;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.p-recruit-allowances__label {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.p-recruit-allowances__amount {
  font-weight: 900;
}


/* --------------------------------------------------
   p-recruit-salary-example（給与例）
   -------------------------------------------------- */

.p-recruit-salary-example {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(242, 162, 192, 0.2);
  background: rgba(242, 162, 192, 0.05);
}

.p-recruit-salary-example__title {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
  text-align: center;
}

.p-recruit-salary-example__amount {
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  color: #374151;
}

@media (min-width: 768px) {
  .p-recruit-salary-example__amount {
    font-size: 1.875rem;
  }
}

.p-recruit-salary-example__amount-accent {
  color: #f2a2c0;
}

.p-recruit-salary-example__note {
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
  margin-top: 0.5rem;
}


/* --------------------------------------------------
   p-recruit-voices（スタッフの声）
   -------------------------------------------------- */

.p-recruit-voices {
  padding: 5rem 0;
  background: #fff;
}

@media (max-width: 768px) {
  .p-recruit-voices {
    padding: 3rem 0;
  }
}

.p-recruit-voices__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.p-recruit-voices__heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .p-recruit-voices__heading {
    font-size: 1.875rem;
  }
}

.p-recruit-voices__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .p-recruit-voices__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-recruit-voices__card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: 2.5rem;
}

@media (min-width: 768px) {
  .p-recruit-voices__card {
    flex-direction: row;
  }
}

.p-recruit-voices__avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  background: #fff;
}

.p-recruit-voices__body {
  flex: 1;
}

.p-recruit-voices__meta {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.p-recruit-voices__name {
  font-weight: 700;
  font-size: 1.125rem;
  color: #1f2937;
}

.p-recruit-voices__badge {
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  margin-left: 0.75rem;
  font-weight: 700;
  background: rgba(242, 162, 192, 0.15);
  color: #f2a2c0;
}

.p-recruit-voices__title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.p-recruit-voices__title-marker {
  background: linear-gradient(transparent 70%, #ffdeeb 70%);
  display: inline;
}

.p-recruit-voices__text {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.625;
}


/* --------------------------------------------------
   p-recruit-message（管理者メッセージ）
   -------------------------------------------------- */

.p-recruit-message {
  padding: 5rem 0;
  background-color: #f2a2c0;
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  .p-recruit-message {
    padding: 3rem 0;
  }
}

.p-recruit-message__inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

.p-recruit-message__heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  color: #fff;
}

@media (min-width: 768px) {
  .p-recruit-message__heading {
    font-size: 1.875rem;
  }
}

.p-recruit-message__body {
  line-height: 1.625;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.p-recruit-message__footer {
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  margin-top: 1.5rem;
}

.p-recruit-message__role {
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
}

.p-recruit-message__name {
  font-weight: 900;
  font-size: 1.5rem;
  color: #7a2a45;
}

.p-recruit-message__manager-badge {
  display: none;
}

@media (min-width: 768px) {
  .p-recruit-message__manager-badge {
    display: block;
  }
}

.p-recruit-message__manager-badge-text {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  background: #fff;
  color: #c0506e;
}

.p-recruit-message__watermark {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.1;
  font-size: 8rem;
  font-weight: 900;
  font-style: italic;
  user-select: none;
}

@media (max-width: 768px) {
  .p-recruit-message__watermark {
    font-size: 5rem;
  }
}


/* --------------------------------------------------
   p-recruit-requirements（募集要項）
   -------------------------------------------------- */

.p-recruit-requirements {
  padding: 5rem 0;
  background: #fff;
}

@media (max-width: 768px) {
  .p-recruit-requirements {
    padding: 3rem 0;
  }
}

.p-recruit-requirements__inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.p-recruit-requirements__heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .p-recruit-requirements__heading {
    font-size: 1.875rem;
  }
}

.p-recruit-requirements__table {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.p-recruit-requirements__list {
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .p-recruit-requirements__list {
    font-size: 1rem;
  }
}

.p-recruit-requirements__row {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid #f9fafb;
}

.p-recruit-requirements__row:first-child {
  border-top: none;
}

@media (min-width: 768px) {
  .p-recruit-requirements__row {
    grid-template-columns: 1fr 3fr;
  }
}

.p-recruit-requirements__label {
  background-color: #f9fafb;
  padding: 1.5rem;
  font-weight: 700;
  color: #4b5563;
}

.p-recruit-requirements__value {
  padding: 1.5rem;
}

.p-recruit-requirements__salary {
  font-weight: 700;
  font-size: 1.125rem;
}

.p-recruit-requirements__salary-note {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
  display: block;
}

.p-recruit-requirements__area-heading {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.p-recruit-requirements__area-text {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.p-recruit-requirements__address-box {
  font-size: 0.75rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 1rem;
  border-radius: 0.75rem;
}

.p-recruit-requirements__address-label {
  font-weight: 700;
  color: #f2a2c0;
  display: block;
  margin-bottom: 0.25rem;
}

.p-recruit-requirements__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.p-recruit-requirements__benefit {
  background-color: #f3f4f6;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}


/* --------------------------------------------------
   p-recruit-apply（応募CTA）
   -------------------------------------------------- */

.p-recruit-apply {
  padding: 5rem 0;
  background-color: #fdf2f7;
}

@media (max-width: 768px) {
  .p-recruit-apply {
    padding: 3rem 0;
  }
}

.p-recruit-apply__inner {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.p-recruit-apply__heading {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .p-recruit-apply__heading {
    font-size: 2.25rem;
  }
}

.p-recruit-apply__heading-br {
  display: block;
}

@media (min-width: 768px) {
  .p-recruit-apply__heading-br {
    display: none;
  }
}

.p-recruit-apply__desc {
  color: #4b5563;
  margin-bottom: 2.5rem;
  line-height: 1.625;
}

.p-recruit-apply__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-recruit-apply__tel-note {
  font-size: 0.875rem;
  font-weight: 700;
  color: #6b7280;
}

.p-recruit-apply__footer {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #e5e7eb;
}

.p-recruit-apply__footer-text {
  font-size: 0.75rem;
  color: #9ca3af;
}

.p-recruit-hero__title-accent {
  color: #f2a2c0;
}
