@charset "UTF-8";
/*!
global > font
------------------------------
*/
@font-face {
  font-family: 'Nimbus Sans';
  src: url('../fonts/nimbus-sans-bold.otf') format('opentype');
}

:root {
  --font-family-base: "Inter", sans-serif;
  --font-family-sub: "Nimbus Sans", sans-serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-header: 30;
  --z-index-default: 1;
  --z-index-negative: -1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: inherit;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

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

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*!
foundation > base
------------------------------
*/
html {
  font-size: calc(100vw / 375);
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: calc(100vw / 1440);
  }
}

body {
  line-height: calc(24 / 16);
  font-size: 16rem;
  color: #4B5563;
  font-family: var(--font-family-base);
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-d-block {
  display: block !important;
}

.u-d-inline-block {
  display: inline-block !important;
}

@media (min-width: 768px) {
  .u-d-block-md-min {
    display: block !important;
  }
}

.u-py-80 {
  padding-block: 80rem !important;
}

/*!
component > button
------------------------------
*/
.c-button {
  padding: 12rem;
  border-radius: 8rem;
  background-color: #EC4899;
  text-align: center;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .c-button {
    padding-inline: 34rem;
  }
}

.c-button--icon::after {
  content: '';
  display: inline-block;
  width: 16rem;
  height: 16rem;
  background-image: url('../img/icon_arrow02.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.c-button--ghost {
  background-color: transparent;
  border: 1rem solid currentColor;
}

.c-button--ghost02 {
  background-color: transparent;
  border: 1rem solid currentColor;
  color: #166534;
}

@media (min-width: 768px) {
  .c-button--ghost,
  .c-button--ghost02 {
    padding-inline: 32rem;
  }
}

@media (any-hover: hover) {
  .c-button:hover {
    background-color: #DB2777;
  }

  .c-button--ghost:hover {
    background-color: #fff;
    border-color: #fff;
    color: #166534;
  }

  .c-button--ghost02:hover {
    background-color: #166534;
    border-color: #166534;
    color: #fff;
  }
}

/*!
component > title
------------------------------
*/
.c-title-level2 {
  font-size: 30rem;
  font-weight: 700;
  line-height: calc(36 / 30);
  color: #166534;
  text-align: center;
}

@media (min-width: 768px) {
  .c-title-level2 {
    font-size: 36rem;
    line-height: calc(40 / 36);
  }
}

/*!
component > lead
------------------------------
*/
.c-lead {
  font-size: 20rem;
  line-height: calc(28 / 20);
  text-align: center;
}

/*!
component > form
------------------------------
*/
.c-form-required {
  display: inline-block;
  color: #EF4444;
  font-size: 14rem;
  line-height: calc(20 / 14);
  font-weight: 700;
  translate: 0 -1.5rem;
}

.c-form-text {
  padding: 8rem 16rem;
  border-radius: 8rem;
  width: 100%;
  border: 1rem solid #D1D5DB;
}

.c-form-text::-moz-placeholder {
  color: #9CA3AF;
}

.c-form-text::placeholder {
  color: #9CA3AF;
}

.c-form-text:focus {
  outline: 1rem solid #F9A8D4;
}

.c-form-text--textarea {
  min-height: 114rem;
  field-sizing: content;
}

.c-form-select {
  padding: 8rem 20rem;
  border-radius: 8rem;
  width: 100%;
  outline: none;
  border: 1rem solid #D1D5DB;
  background-color: #EFEFEF;
  line-height: 1;
  color: #000000;
}

.c-form-select:focus {
  outline: 1rem solid #F9A8D4;
}

.c-form-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8rem;
  padding: 12rem 24rem;
  border-radius: 8rem;
  font-size: 16rem;
  font-weight: 600;
  line-height: calc(24 / 16);
  color: #fff;
  background-color: #EC4899;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .c-form-button:hover {
    background-color: #DB2777;
  }
}

.c-form-button::before {
  content: '';
  display: inline-block;
  width: 20rem;
  height: 20rem;
  background-image: url('../img/icon_send.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*!
component > job-card
------------------------------
*/
.c-job-card-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24rem;
}

@media (min-width: 768px) {
  .c-job-card-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-job-card {
  padding: 24rem;
  border-radius: 8rem;
  background-color: #fff;
  box-shadow: 
    0 4rem 6rem -1rem rgba(0, 0, 0, 0.1),
    0 2rem 4rem -2rem rgba(0, 0, 0, 0.1);
}

.c-job-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.c-job-card__title {
  font-size: 20rem;
  font-weight: 600;
  line-height: calc(28 / 20);
  color: #166534;
}

.c-job-card__employment-type {
  display: inline-block;
  padding: 4rem 12rem;
  border-radius: 100vh;
  background-color: #FCE7F3;
  font-size: 14rem;
  font-weight: 500;
  line-height: calc(20 / 14);
  color: #9D174D;
}

.c-job-card__details {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.c-job-card__detail {
  display: flex;
  align-items: center;
  gap: 8rem;
}

.c-job-card__detail::before {
  content: '';
  display: inline-block;
  width: 16rem;
  height: 16rem;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.c-job-card__detail--location::before {
  mask-image: url(../img/icon_map_pin.svg);
  background-color: #4B5563;
}

.c-job-card__detail--experience::before {
  mask-image: url(../img/icon_clock.svg);
  background-color: #4B5563;
}

.c-job-card__description {
  margin-top: 16rem;
  color: #374151;
}

.c-job-card__button-wrap {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
}

.c-job-card__button {
  padding: 8rem 16rem;
}

/*!
layout > container
------------------------------
*/
.l-container {
  padding-inline: 16rem;
}

@media (min-width: 768px) {
  .l-container {
    padding-inline: 112rem;
  }
}

/*!
layout > header
------------------------------
*/
.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72rem;
  padding-inline: 16rem;
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: var(--z-index-header);
  background-color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .l-header {
    height: 64rem;
    padding-left: 112rem;
    padding-right: 117.44rem;
  }
}

.l-header__logo {
  width: 160rem;
}

.l-header__logo-link {
  display: block;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .l-header__logo-link:hover {
    opacity: 0.8;
  }
}

.l-header__hamburger {
  position: absolute;
  top: 50%;
  right: 18rem;
  transform: translateY(-50%);
  width: 40rem;
  height: 40rem;
  display: grid;
  place-items: center;
}

@media (min-width: 768px) {
  .l-header__hamburger {
    display: none;
  }
}

.l-header__hamburger-line {
  position: relative;
  width: 17rem;
  height: 2rem;
  background-color: #374151;
  transition: all 0.3s;
}

.l-header__hamburger-line::before,
.l-header__hamburger-line::after {
  content: '';
  position: absolute;
  left: 0;
  width: 17rem;
  height: 2rem;
  background-color: #374151;
  transition: all 0.3s;
}

.l-header__hamburger-line::before {
  top: -6rem;
}

.l-header__hamburger-line::after {
  bottom: -6rem;
}

.l-header__hamburger[aria-expanded="true"] .l-header__hamburger-line {
  background-color: transparent;
}

.l-header__hamburger[aria-expanded="true"] .l-header__hamburger-line::before {
  top: 0;
  transform: rotate(45deg);
}

.l-header__hamburger[aria-expanded="true"] .l-header__hamburger-line::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.l-header__drawer {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: var(--z-index-overlay);
  top: 72rem;
  right: 0;
  left: 0;
  bottom: 0;
  height: calc(100dvh - 72rem);
  background-color: rgba(255, 255, 255, 0.95);
  overflow-y: auto;
  scrollbar-width: none;
  transition: all 0.3s;
}

.l-header__drawer.is-active {
  opacity: 1;
  visibility: visible;
}

.l-header__drawer-link {
  padding-block: 28rem;
  display: block;
  font-size: 24rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.l-header__nav {
  display: none;
}

@media (min-width: 768px) {
  .l-header__nav {
    display: block;
  }
}

.l-header__nav-list {
  display: flex;
  gap: 32rem;
}

.l-header__nav-link {
  color: #374151;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .l-header__nav-link:hover,
  .l-header__nav-link:focus {
    color: #EC4899;
  }
}

/*!
layout > footer
------------------------------
*/
.l-footer {
  padding: 48rem 16rem;
  background-color: #166534;
  color: #D1D5DB;
}

@media (min-width: 768px) {
  .l-footer {
    padding-inline: 112rem;
  }
}

.l-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
}

@media (min-width: 768px) {
  .l-footer__inner {
    grid-template-columns: 384rem 1fr;
  }
}

.l-footer__logo {
  width: 160rem;
}

.l-footer__text {
  margin-top: 16rem;
}

.l-footer__contact {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.l-footer__contact-text {
  font-family: var(--font-family-sub);
  font-weight: 700;
  font-size: 13.89rem;
  font-weight: 700;
  line-height: calc(20 / 13.89);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8rem;
}

.l-footer__contact-text::before {
  content: '';
  display: inline-block;
  width: 16rem;
  height: 16rem;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
}

.l-footer__contact-text--address::before {
  mask-image: url(../img/icon_map_pin.svg);
}

.l-footer__contact-text--tel::before {
  mask-image: url(../img/icon_tel.svg);
}

.l-footer__contact-text--email::before {
  mask-image: url(../img/icon_mail.svg);
}

.l-footer__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
}

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

.l-footer__item-title {
  font-size: 18rem;
  font-weight: 600;
  line-height: calc(28 / 18);
  color: #FFFFFF;
}

.l-footer__menu {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.l-footer__menu-link {
  display: block;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .l-footer__menu-link:hover {
    color: #F472B6;
  }
}

.l-footer__menu-apply {
  margin-top: 16rem;
}

.l-footer__menu-apply-link {
  padding: 8rem 16rem;
}

.l-footer__regal {
  margin-top: 32rem;
  padding-top: 32rem;
  border-top: 1px solid #15803D;
}

.l-footer__copyright {
  display: block;
  text-align: center;
  font-family: var(--font-family-sub);
  font-size: 13.56rem;
  font-weight: 700;
  line-height: calc(20 / 13.56);
  color: #D1D5DB;
}

/*!
page > top > top-kv
------------------------------
*/
.top-kv {
  padding-block: 80rem;
  background-color: #FDF2F8;
}

.top-kv__inner {
  padding-inline: 16rem;
}

@media (min-width: 768px) {
  .top-kv__inner {
    padding-inline: 112rem;
  }
}

.top-kv__copy {
  font-size: 36rem;
  font-weight: 700;
  line-height: calc(40 / 36);
  text-align: center;
}

@media (min-width: 768px) {
  .top-kv__copy {
    font-size: 60rem;
    line-height: 1;
  }
}

.top-kv__copy-text {
  color: #166534;
}

.top-kv__copy-text02 {
  color: #EC4899;
}

.top-kv__text {
  margin-top: 24rem;
  font-size: 20rem;
  line-height: calc(28 / 20);
  color: #374151;
  text-align: center;
}

@media (min-width: 768px) {
  .top-kv__text {
    max-width: 745rem;
    margin-inline: auto;
  }
}

.top-kv__cta {
  display: flex;
  flex-direction: column;
  gap: 16rem;
  margin-top: 32rem;
}

@media (min-width: 768px) {
  .top-kv__cta {
    flex-direction: row;
    justify-content: center;
  }
}

.top-kv__cta-link--icon {
  gap: 8rem;
}

.top-kv__cta-link--icon::after {
  background-image: url(../img/icon_arrow.svg);
}

.top-kv__list {
  margin-top: 64rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
}

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

.top-kv__item {
  padding: 24rem 27rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8rem;
  background-color: #fff;
  box-shadow: 
    0 4rem 6rem -1rem rgba(0, 0, 0, 0.1),
    0 2rem 4rem -2rem rgba(0, 0, 0, 0.1);
}

.top-kv__item::before {
  content: '';
  display: block;
  width: 48rem;
  height: 48rem;
  margin-bottom: 16rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-kv__item--team::before {
  background-image: url('../img/icon_human.svg');
}

.top-kv__item--environment::before {
  background-image: url('../img/icon_heart.svg');
}

.top-kv__item--support::before {
  background-image: url('../img/icon_award.svg');
}

.top-kv__item-title {
  font-size: 20rem;
  font-weight: 600;
  line-height: calc(28 / 20);
  color: #166534;
  text-align: center;
}

.top-kv__item-text {
  margin-top: 8rem;
  text-align: center;
}

/*!
page > top > top-about
------------------------------
*/
.top-about {
  background-color: #fff;
}

.top-about__lead {
  margin-top: 16rem;
}

.top-about__body {
  margin-top: 64rem;
}

.top-about__group {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .top-about__group {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 48rem;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .top-about__philosophy {
    grid-column: 1 / 2;
  }
}

.top-philosophy {
  background-image: linear-gradient(135deg, #FCE7F3 0%, #DCFCE7 100%);
  padding: 32rem;
  border-radius: 8rem;
}

.top-philosophy__title {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(32 / 24);
  color: #166534;
}

.top-philosophy__text-wrap {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
  gap: 16rem;
}

.top-philosophy__text {
  color: #374151;
}

.top-about__detail-list {
  margin-top: 32rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16rem;
}

@media (min-width: 768px) {
  .top-about__detail-list {
    grid-row: 2 / 3;
    margin-top: 0;
  }
}

.top-about__detail-item {
  padding: 16rem;
  border-radius: 8rem;
  border: 1rem solid #FBCFE8;
}

.top-about__detail-item::before {
  content: '';
  display: block;
  width: 32rem;
  height: 32rem;
  margin-bottom: 8rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-about__detail-item--foundation::before {
  background-image: url('../img/icon_building.svg');
}

.top-about__detail-item--staff::before {
  background-image: url('../img/icon_human.svg');
}

.top-about__detail-item--bed::before {
  background-image: url('../img/icon_map_pin.svg');
}

.top-about__detail-item--time::before {
  background-image: url('../img/icon_clock.svg');
}

.top-about__detail-item-title {
  font-weight: 600;
  color: #166534;
}

.top-about__detail-item-text {
  font-family: var(--font-family-sub);
  font-weight: 700;
}

.top-about__detail-item-text--time {
  font-family: var(--font-family-base);
  font-weight: 400;
}

.top-about__medical-services {
  margin-top: 48rem;
}

@media (min-width: 768px) {
  .top-about__medical-services {
    margin-top: 0;
    grid-row: 1 / 3;
    grid-column: 2 / 3;
  }
}

.top-medical-services {
  padding: 32rem;
  border-radius: 8rem;
  background-color: #FDF2F8;
}

.top-medical-services__img-wrap {
  overflow: hidden;
  border-radius: 8rem;
}

.top-medical-services__img {
  height: 256rem;
  object-fit: cover;
}

.top-medical-services__content {
  margin-top: 24rem;
}

.top-medical-services__title {
  font-size: 20rem;
  font-weight: 700;
  line-height: calc(28 / 20);
  color: #166534;
}

.top-medical-services__list {
  margin-top: 16rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
}

.top-medical-services__item {
  font-size: 13.45rem;
  line-height: calc(20 / 13.45);
  color: #374151;
  padding-right: 12.5rem;
}

.top-medical-services__item--primary {
  font-family: var(--font-family-sub);
  font-size: 12.47rem;
  font-weight: 700;
  line-height: calc(20 / 12.47);
}

.top-medical-services__item::before {
  content: "•";
  display: inline-block;
  margin-right: 4rem;
}

/*!
page > top > top-work
------------------------------
*/
.top-work {
  background-color: #FDF2F8;
}

.top-work__lead {
  margin-top: 16rem;
  padding-inline: 0.7rem;
}

.top-work__body {
  margin-top: 64rem;
}

.top-work__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
}

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

.top-work__item {
  padding: 24rem;
  border-radius: 8rem;
  background-color: #fff;
  box-shadow:
    0 4rem 6rem -1rem rgba(0, 0, 0, 0.1),
    0 2rem 4rem -2rem rgba(0, 0, 0, 0.1);
}

.top-work__item::before {
  content: '';
  display: block;
  width: 48rem;
  height: 48rem;
  margin-bottom: 16rem;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.top-work__item--team::before {
  mask-image: url(../img/icon_human.svg);
  background-color: #EC4899;
}

.top-work__item--work-life-balance::before {
  mask-image: url(../img/icon_heart.svg);
  background-color: #22C55E;
}

.top-work__item--training::before {
  mask-image: url(../img/icon_book.svg);
  background-color: #3B82F6;
}

.top-work__item--equipment::before {
  mask-image: url(../img/icon_lightning.svg);
  background-color: #EAB308;
}

.top-work__item--environment::before {
  mask-image: url(../img/icon_shield.svg);
  background-color: #A855F7;
}

.top-work__item--facilities::before {
  mask-image: url(../img/icon_cup.svg);
  background-color: #F97316;
}

.top-work__item-title {
  font-size: 20rem;
  font-weight: 600;
  line-height: calc(28 / 20);
  color: #166534;
}

.top-work__item-text {
  margin-top: 12rem;
}

@media (min-width: 768px) {
  .top-work__item-text {
    padding-right: 16rem;
  }
}

.top-work__support {
  margin-top: 64rem;
}

.top-work-support {
  padding: 32rem;
  border-radius: 8rem;
  background-color: #fff;
  box-shadow:
    0 4rem 6rem -1rem rgba(0, 0, 0, 0.1),
    0 2rem 4rem -2rem rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
}

@media (min-width: 768px) {
  .top-work-support {
    grid-template-columns: repeat(2, 1fr);
  }
}

.top-work-support__title {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(32 / 24);
  color: #166534;
}

.top-work-support__text {
  margin-top: 16rem;
  color: #374151;
}

.top-work-support__list {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.top-work-support__item {
  color: #374151;
  display: flex;
  align-items: center;
  gap: 12rem;
}

.top-work-support__item::before {
  content: '';
  display: inline-block;
  width: 8rem;
  height: 8rem;
  border-radius: 100vh;
  background-color: #EC4899;
}

.top-work-support__img-wrap {
  border-radius: 8rem;
  overflow: hidden;
}

.top-work-support__img {
  height: 256rem;
  object-fit: cover;
}

/*!
page > top > top-recruit
------------------------------
*/
.top-recruit {
  background-color: #fff;
}

.top-recruit__lead {
  margin-top: 16rem;
  padding-inline: 0.7rem;
}

.top-recruit__body {
  margin-top: 64rem;
}

.top-recruit__list {
  display: flex;
  flex-direction: column;
  gap: 48rem;
}

.top-recruit__item {
  padding: 32rem;
  border-radius: 8rem;
  background-color: #FDF2F8;
}

.top-recruit__item-title {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(32 / 24);
  color: #166534;
  display: flex;
  align-items: center;
  gap: 8rem;
}

.top-recruit__item-title::before {
  content: '';
  display: inline-block;
  width: 24rem;
  height: 24rem;
  background-image: url('../img/icon_bag.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-recruit__job {
  margin-top: 24rem;
}

.top-recruit__entry {
  margin-top: 64rem;
  padding: 32rem;
  border-radius: 8rem;
  background-color: #166534;
  text-align: center;
  color: #fff;
}

.top-recruit__entry-title {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(32 / 24);
}

.top-recruit__entry-text {
  margin-top: 16rem;
  font-size: 18rem;
  line-height: calc(28 / 18);
}

.top-recruit__entry-button-wrap {
  margin-top: 24rem;
  display: flex;
  flex-direction: column;
  gap: 16rem;
}

@media (min-width: 768px) {
  .top-recruit__entry-button-wrap {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .top-recruit__entry-button {
    padding: 13rem 32rem;
  }

  .top-recruit__entry-button--tour {
    padding-block: 12rem;
  }
}

/*!
page > top > top-voice
------------------------------
*/
.top-voice {
  background-color: #FDF2F8;
}

.top-voice__lead {
  margin-top: 16rem;
  padding-inline: 0.7rem;
}

.top-voice__body {
  margin-top: 64rem;
}

.top-voice__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
}

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

.top-voice__staff {
  padding: 24rem;
  border-radius: 8rem;
  background-color: #fff;
  box-shadow:
    0 4rem 6rem -1rem rgba(0, 0, 0, 0.1),
    0 2rem 4rem -2rem rgba(0, 0, 0, 0.1);
}

.top-voice__staff-info {
  display: flex;
  gap: 16rem;
  align-items: flex-start;
  padding-right: 40rem;
  position: relative;
}

.top-voice__staff-info::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 32rem;
  height: 32rem;
  background-image: url('../img/icon_quotation_marks.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-voice__staff-img-wrap {
  flex-shrink: 0;
  width: 64rem;
  aspect-ratio: 1 / 1;
  border-radius: 100vh;
  overflow: hidden;
}

.top-voice__staff-detail {
  flex-grow: 1;
}

.top-voice__staff-name {
  display: block;
  font-size: 18rem;
  font-weight: 600;
  line-height: calc(28 / 18);
  color: #166534;
}

.top-voice__staff-job {
  display: block;
  font-size: 15.75rem;
  font-weight: 500;
  line-height: calc(24 / 15.75);
  color: #DB2777;
}

.top-voice__staff-subjects {
  display: block;
  font-size: 14rem;
  line-height: calc(20 / 14);
  color: #6B7280;
}

.top-voice__staff-rating {
  display: block;
  width: fit-content;
  line-height: 1;
  margin-top: 4rem;
}

.top-voice__staff-rating-img {
  width: 80rem;
}

.top-voice__staff-message {
  margin-top: 16rem;
  color: #374151;
}

@media (min-width: 768px) {
  .top-voice__staff-message {
    padding-right: 8rem;
  }
}

.top-voice__internship {
  margin-top: 64rem;
  padding: 32rem;
  background-color: #fff;
  border-radius: 8rem;
  box-shadow:
    0 4rem 6rem -1rem rgba(0, 0, 0, 0.1),
    0 2rem 4rem -2rem rgba(0, 0, 0, 0.1);
  text-align: center;
}

.top-voice__internship-title {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(32 / 24);
  color: #166534;
}

.top-voice__internship-text {
  margin-top: 16rem;
  color: #374151;
}

.top-voice__internship-button-wrap {
  margin-top: 24rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .top-voice__internship-button-wrap {
    display: block;
  }
}

.top-voice__internship-button {
  padding-inline: 34.19rem;
}

@media (min-width: 768px) {
  .top-voice__internship-button {
    padding-inline: 32rem;
  }
}

/*!
page > top > top-welfare
------------------------------
*/
.top-welfare {
  background-color: #fff;
}

.top-welfare__lead {
  margin-top: 16rem;
  padding-inline: 0.7rem;
}

.top-welfare__body {
  margin-top: 64rem;
}

.top-welfare__item-title {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(32 / 24);
  color: #166534;
  text-align: center;
}

.top-welfare-welfare__list {
  margin-top: 32rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24rem;
}

@media (min-width: 768px) {
  .top-welfare-welfare__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.top-welfare-welfare__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24rem;
  border-radius: 8rem;
  background-image: linear-gradient(135deg, #FDF2F8 0%, #F0FDF4 100%);
  transition: all 0.3s;
  text-align: center;
}

@media (any-hover: hover) {
  .top-welfare-welfare__link:hover {
    box-shadow:
      0 10rem 15rem -3rem rgba(0, 0, 0, 0.1),
      0 4rem 6rem -4rem rgba(0, 0, 0, 0.1);
  }
}

.top-welfare-welfare__link::before {
  content: '';
  display: block;
  width: 48rem;
  height: 48rem;
  margin-bottom: 16rem;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.top-welfare-welfare__link--nursery::before {
  mask-image: url('../img/icon_home.svg');
  background-color: #EC4899;
}

.top-welfare-welfare__link--training::before {
  mask-image: url('../img/icon_mortarboard.svg');
  background-color: #3B82F6;
}

.top-welfare-welfare__link--childcare::before {
  mask-image: url('../img/icon_baby.svg');
  background-color: #22C55E;
}

.top-welfare-welfare__link--transportation::before {
  mask-image: url('../img/icon_car.svg');
  background-color: #A855F7;
}

.top-welfare-welfare__link--cafeteria::before {
  mask-image: url('../img/icon_cutlery.svg');
  background-color: #F97316;
}

.top-welfare-welfare__link--insurance::before {
  mask-image: url('../img/icon_shield.svg');
  background-color: #EF4444;
}

.top-welfare-welfare__link--health-support::before {
  mask-image: url('../img/icon_heart.svg');
  background-color: #EC4899;
}

.top-welfare-welfare__link--special-leave::before {
  mask-image: url('../img/icon_present.svg');
  background-color: #6366F1;
}

.top-welfare-welfare__item-title {
  font-size: 18rem;
  font-weight: 600;
  line-height: calc(28 / 18);
  color: #166534;
}

.top-welfare-welfare__item-text {
  margin-top: 8rem;
  font-size: 14rem;
  line-height: calc(20 / 14);
}

.top-welfare__training {
  margin-top: 80rem;
}

.top-welfare-training__card-wrap {
  margin-top: 32rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
}

@media (min-width: 768px) {
  .top-welfare-training__card-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-welfare-training__card-link {
  display: block;
  padding: 24rem;
  border-radius: 8rem;
  background-color: #fff;
  border: 1rem solid #FBCFE8;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .top-welfare-training__card-link:hover {
    box-shadow:
      0 10rem 15rem -3rem rgba(0, 0, 0, 0.1),
      0 4rem 6rem -4rem rgba(0, 0, 0, 0.1);
  }
}

.top-welfare-training__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-welfare-training__card-title {
  font-size: 20rem;
  font-weight: 600;
  line-height: calc(28 / 20);
  color: #166534;
}

.top-welfare-training__card-period {
  padding: 4rem 12rem;
  border-radius: 100vh;
  background-color: #FCE7F3;
  font-size: 13.67rem;
  font-weight: 500;
  line-height: calc(20 / 13.67);
  color: #9D174D;
}

.top-welfare-training__card-period--management {
  font-family: var(--font-family-sub);
  font-weight: 700;
}

.top-welfare-training__card-text {
  margin-top: 16rem;
  color: #374151;
}

.top-welfare-training__card-list {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.top-welfare-training__card-item {
  display: flex;
  align-items: baseline;
  gap: 12rem;
  font-size: 14rem;
  line-height: calc(20 / 14);
}

.top-welfare-training__card-item--ojt {
  font-family: var(--font-family-sub);
  font-weight: 700;
}

.top-welfare-training__card-item::before {
  content: '';
  display: inline-block;
  width: 8rem;
  height: 8rem;
  border-radius: 100vh;
  background-color: #EC4899;
}

.top-welfare__treatment {
  margin-top: 64rem;
}

.top-welfare-treatment {
  padding: 48rem 32rem 32rem;
  border-radius: 8rem;
  background-image: linear-gradient(90deg, #166534 0%, #DB2777 100%);
  color: #fff;
  text-align: center;
}

.top-welfare__item-title--treatment {
  color: #fff;
}

.top-welfare-treatment__text {
  margin-top: 16rem;
  font-size: 18rem;
  line-height: calc(28 / 18);
}

.top-welfare-treatment__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24rem;
  margin-top: 32rem;
}

@media (min-width: 768px) {
  .top-welfare-treatment__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.top-welfare-treatment__item-title {
  font-weight: 600;
}

.top-welfare-treatment__item-text {
  margin-top: 8rem;
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(32 / 24);
}

.top-welfare-treatment__item-text--night-shift {
  font-family: var(--font-family-sub);
  font-size: 24rem;
  line-height: calc(32 / 24);
}

.top-welfare-treatment__item-note {
  font-size: 14rem;
  line-height: calc(20 / 14);
}

/*!
page > top > top-contact
------------------------------
*/
.top-contact {
  background-color: #FDF2F8;
}

.top-contact__lead {
  margin-top: 16rem;
  padding-inline: 0.7rem;
}

.top-contact__body {
  margin-top: 64rem;
}

@media (min-width: 768px) {
  .top-contact__group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 32rem 48rem;
  }
}

.top-contact__item {
  padding: 32rem;
  border-radius: 8rem;
  background-color: #fff;
  box-shadow:
    0 4rem 6rem -1rem rgba(0, 0, 0, 0.1),
    0 2rem 4rem -2rem rgba(0, 0, 0, 0.1);
}

.top-contact__item-title {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(32 / 24);
  color: #166534;
}

.top-contact-info__list {
  margin-top: 24rem;
  display: flex;
  flex-direction: column;
  gap: 16rem;
}

.top-contact-info__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 12rem;
}

.top-contact-info__item::before {
  content: '';
  display: inline-block;
  width: 24rem;
  height: 24rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  translate: 0 4rem;
}

.top-contact-info__item--address::before {
  background-image: url('../img/icon_map_pin.svg');
}

.top-contact-info__item--tel::before {
  background-image: url('../img/icon_tel.svg');
}

.top-contact-info__item--email::before {
  background-image: url('../img/icon_mail.svg');
}

.top-contact-info__item--time::before {
  background-image: url('../img/icon_clock.svg');
}

.top-contact-info__item-title {
  font-weight: 600;
  color: #166534;
  grid-column: 2 / 3;
}

.top-contact-info__item-text {
  font-family: var(--font-family-sub);
  font-weight: 700;
  color: #374151;
  grid-column: 2 / 3;
}

.top-contact__access {
  margin-top: 32rem;
}

@media (min-width: 768px) {
  .top-contact__access {
    margin-top: 0;
  }
}

.top-contact-access__map-wrap {
  margin-top: 24rem;
  border-radius: 8rem;
  overflow: hidden;
}

.top-contact-access__map {
  width: 100%;
  height: 248rem;
  vertical-align: bottom;
}

.top-contact-access__details {
  margin-top: 28rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.top-contact-access__details-item {
  display: flex;
  font-size: 15rem;
}

.top-contact-access__details-term {
  font-weight: 700;
}

.top-contact-access__details-term::after {
  content: ':';
  margin-right: 4rem;
}

.top-contact__form {
  margin-top: 48rem;
}

@media (min-width: 768px) {
  .top-contact__form {
    margin-top: 0;
    grid-row: 1 / 3;
    grid-column: 2 / 3;
  }
}

.top-contact-form__form {
  margin-top: 24rem;
  display: flex;
  flex-direction: column;
  gap: 24.5rem;
}

.top-contact-form__label {
  display: block;
  margin-bottom: 8rem;
  font-size: 14rem;
  font-weight: 500;
  line-height: calc(20 / 14);
  color: #374151;
}

.top-contact-form__label-required {
  margin-left: 3.5rem;
}

.top-contact-form__button-wrap {
  margin-top: 8rem;
}
