@charset "UTF-8";
/*==========================================
テーブルレイアウト
===========================================*/
.com-table tr {
  display: flex;
  padding: 2rem 0;
  border-bottom: none;
}
.com-table tr:nth-child(odd) {
  background: rgba(var(--color-white-rgb), 0.7);
}
.com-table tr th {
  width: 25rem;
  vertical-align: top;
  padding: 0 2rem;
}
.com-table tr th span {
  border-left: 0.5rem solid var(--primary-color);
  padding-left: 1rem;
}
.com-table tr td {
  width: calc(100% - 25rem);
  padding: 0 2rem;
}
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}
.com-table tr td .tel__text {
  display: block;
  line-height: 1.3;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-content p {
  margin-bottom: 3rem;
}

.com-text.align-center {
  text-align: center;
}

#g-map .map {
  height: 40rem;
}

.button--primary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7rem;
  padding: 1.2rem 2rem;
  background: var(--primary-color);
  color: var(--color-white);
  border-radius: var(--button-radius-pc);
  font-weight: var(--font-weight-regular);
  line-height: 1.4;
  font-size: var(--font-size-20);
}
.button--primary:hover {
  opacity: 0.85;
  filter: none;
  background: var(--color-orange);
}
.button--primary.bg-color-white {
  background: var(--color-white);
  color: var(--body-font-color);
}
.button--primary.bg-color-white.has-arrow::after {
  background: var(--body-font-color);
}

.button--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5.6rem;
  padding: 1.2rem 4rem;
  background: var(--color-white);
  color: var(--primary-color);
  border-radius: var(--button-radius-pc);
  font-weight: var(--font-weight-regular);
  line-height: 1.4;
  font-size: var(--font-size-20);
}

.has-arrow {
  position: relative;
}
.has-arrow::after {
  content: "";
  position: absolute;
  inset: 0 2rem 0 auto;
  margin: auto 0;
  width: 2.25rem;
  height: 0.9rem;
  -webkit-mask: url(../img/common/com_arr.svg) center/contain no-repeat;
          mask: url(../img/common/com_arr.svg) center/contain no-repeat;
  background: var(--color-white);
}

.has-counter .counter-item::before {
  font-size: var(--font-size-36);
  color: var(--primary-color);
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-bold);
}

/*==========================================
共通タイトル
===========================================*/
.title--primary {
  text-align: center;
  margin-bottom: 4rem;
}
.title--primary .title-en {
  display: block;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-30);
  color: var(--primary-color);
  line-height: 1.2;
  letter-spacing: 0.42em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.title--primary .title-ja {
  display: block;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-40);
  line-height: 1.75;
  letter-spacing: var(--body-letter-spacing);
}

.title--secondary {
  font-size: var(--font-size-28);
  border-bottom: 1px solid var(--color-gray-light);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

/*==========================================
header
===========================================*/
.logo img {
  width: 16.3rem;
  height: 5rem;
}

.l-header {
  padding: 0 6.7rem 0 2.8rem;
  z-index: 1000;
  inset: 3rem auto auto 0;
}
.l-header__logo {
  line-height: 1;
}
.l-header__logo a {
  width: 24rem;
  height: 9rem;
  border-radius: 0 0 2.8rem 0;
}
.l-header__right {
  inset: 5rem 7rem auto auto;
  gap: 2rem;
  z-index: 1000;
}
.l-header__nav {
  margin-top: 2rem;
}
.l-header__nav-list {
  gap: 2rem 2.5rem;
  padding: 0 3.5rem;
}
.l-header__nav-link {
  font-size: var(--font-size-16);
  padding: 1rem 0;
}
.l-header__nav-link.nolink {
  transition: all 0.3s;
  position: relative;
  padding-right: 1rem;
}
.l-header__nav-link.nolink:hover {
  cursor: default;
}
.l-header__nav-link.nolink::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  margin: auto 0;
  inset: 0 0 0 auto;
  border-style: solid;
  border-width: 0.6rem 0.4rem 0px 0.4rem;
  border-color: var(--primary-color) transparent transparent transparent;
}
.l-header__nav-link:hover {
  color: var(--primary-color);
}
.l-header__nav-link.current {
  color: var(--primary-color);
}
.l-header__nav-item:has(.nolink) {
  position: relative;
}
.l-header__nav-item:has(.nolink):hover .dropdown-menu__list {
  opacity: 1;
  visibility: visible;
}
.l-header .dropdown-menu__list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 35rem;
  background: var(--color-white);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
  border-radius: 0 0 0.8rem 0.8rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 10;
}
.l-header .dropdown-menu__item {
  border-bottom: 1px solid var(--color-gray-light);
}
.l-header .dropdown-menu__item:last-child {
  border-bottom: none;
}
.l-header .dropdown-menu__link {
  padding: 1rem;
  display: block;
  font-size: var(--font-size-14);
  line-height: 1.5;
}
.l-header .dropdown-menu__link:hover {
  color: var(--primary-color);
}
.l-header .dropdown-menu__link.current {
  color: var(--primary-color);
}
.l-header__entry {
  width: 19rem;
  min-height: 5rem;
  padding: 0 2.5rem;
  font-size: var(--font-size-20);
  margin-left: auto;
}

.l-fixed-button {
  position: fixed;
  right: 1.5rem;
  bottom: 5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 18.5rem;
  height: 18.5rem;
  padding: 1rem;
  background: var(--primary-color);
  border: 0.8rem solid var(--primary-color-light);
  border-radius: 50%;
  color: var(--color-white);
  text-align: center;
  line-height: 1.4;
}
.l-fixed-button::before, .l-fixed-button::after {
  content: "";
  position: absolute;
}
.l-fixed-button::before {
  width: 5.5rem;
  height: 7.7rem;
  top: -2rem;
  left: -2rem;
  background: url(../img/common/fixed-button-lt_illust.png) center/100% no-repeat;
}
.l-fixed-button::after {
  width: 5.7rem;
  height: 5.3rem;
  right: -1rem;
  bottom: -2rem;
  background: url(../img/common/fixed-button-rb_illust.png) center/100% no-repeat;
}
.l-fixed-button__label {
  font-size: var(--font-size-16);
}
.l-fixed-button__badge {
  font-size: var(--font-size-22);
  background: linear-gradient(to bottom, transparent 60%, #58ce87 60%);
  margin-top: 0.5rem;
}
.l-fixed-button__text {
  background: var(--color-white);
  color: var(--body-font-color);
  font-size: var(--font-size-12);
  margin-top: 1rem;
  min-height: 3.1rem;
  padding: 0 2.2rem 0 0;
  width: 12rem;
}
.l-fixed-button__text::after {
  width: 1.75rem;
  right: 1rem;
  background: var(--body-font-color);
}
.l-fixed-button:hover {
  opacity: 1;
  transform: scale(1.03);
}

.p-top__mv-crown {
  font-size: 13.6rem;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.02em;
  color: #e8e0c5;
  position: absolute;
  line-height: 0.7;
}

/*==========================================
footer
===========================================*/
.l-footer {
  background: #ede7d3;
}
.l-footer__inbox {
  padding: 8rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  align-items: center;
}
.l-footer__left {
  width: 54rem;
}
.l-footer__address {
  font-style: normal;
  line-height: 1.8;
  font-size: var(--font-size-16);
  grid-column-start: 1;
  grid-row-start: 2;
  margin-top: 0;
}
.l-footer__nav {
  grid-row: span 2/span 2;
  grid-column-start: 2;
  grid-row-start: 1;
}
.l-footer__nav-list {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.l-footer__nav-item {
  margin-bottom: 1rem;
}
.l-footer__nav-item:last-child {
  margin-bottom: 0;
}
.l-footer__nav-item:nth-child(1) {
  grid-area: 1/1/2/2;
}
.l-footer__nav-item:nth-child(2) {
  width: 37rem;
  grid-area: 2/1/5/2;
}
.l-footer__nav-item:nth-child(3) {
  grid-area: 5/1/6/2;
}
.l-footer__nav-item:nth-child(4) {
  grid-area: 1/2/2/3;
}
.l-footer__nav-item:nth-child(5) {
  grid-area: 2/2/3/3;
}
.l-footer__nav-item:nth-child(6) {
  grid-area: 3/2/4/3;
}
.l-footer__nav-item:nth-child(7) {
  grid-area: 4/2/5/3;
}
.l-footer__nav-item:nth-child(8) {
  grid-area: 5/2/6/3;
}
.l-footer__nav-item:nth-child(9) {
  grid-area: 6/2/7/3;
}
.l-footer__nav-link,
.l-footer .dropdown-menu__link {
  position: relative;
  display: block;
  font-size: var(--font-size-14);
  padding-left: 1.5rem;
}
.l-footer__nav-link::before,
.l-footer .dropdown-menu__link::before {
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  transition: all 0.3s;
}
.l-footer__nav-link:hover,
.l-footer .dropdown-menu__link:hover {
  text-decoration: underline;
  transform: translateX(1rem);
}
.l-footer__nav-link.nolink:hover,
.l-footer .dropdown-menu__link.nolink:hover {
  cursor: default;
  text-decoration: none;
  transform: none;
}
.l-footer__nav-link::before {
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid var(--primary-color);
  border-right: 1px solid var(--primary-color);
  transform: rotate(45deg);
}
.l-footer .dropdown-menu__item {
  margin-bottom: 1rem;
}
.l-footer .dropdown-menu__item:last-child {
  margin-bottom: 0;
}
.l-footer .dropdown-menu__item:first-child {
  margin-top: 1rem;
}
.l-footer .dropdown-menu__link::before {
  width: 0.5rem;
  height: 1px;
  background: var(--primary-color);
}
.l-footer__right {
  width: 45.4rem;
}
.l-footer__map iframe {
  border-radius: 1.4rem;
}
.l-footer #copyright {
  word-break: normal;
  text-align: center;
  background: #e8dcb4;
}
.l-footer #copyright small {
  font-size: var(--font-size-16);
}

/*==========================================
sv
===========================================*/
.sv {
  height: 55rem;
  margin: 3rem auto 11rem;
  z-index: 1;
}
.sv::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 51.0752%;
  height: 35rem;
  border-radius: 17.5rem;
  background: #fdfbf6;
  inset: auto 7.5268% -15.7rem auto;
}
.sv__title {
  font-size: var(--font-size-36);
  inset: auto 0 16.8rem auto;
  width: 50%;
  z-index: 1;
}
.sv__title span {
  padding: 1rem 6rem;
}
.sv__title.p-recruit-manager__sv-title span {
  display: inline-block;
  text-align: center;
}
.sv__img {
  width: 47.311%;
  height: 35rem;
  position: absolute;
  inset: auto auto 8.5rem 14rem;
}
.sv__img img {
  border-radius: 17.5rem;
}
.sv__img::before {
  content: "";
  position: absolute;
  inset: -7.6rem auto auto -2rem;
  width: 99.659%;
  height: 50.1rem;
  background: url(../img/sv/sv_illust.png) center/100% no-repeat;
}

/*==========================================
コンポーネントファイル
===========================================*/
/*
# パンくずリスト
------------------------*/
div .bread {
  font-size: var(--font-size-14);
  position: relative;
  z-index: 100;
}
div .bread .breadcrumbs {
  position: absolute;
  width: var(--site-primary-inbox);
  margin: 0 auto;
  inset: 1rem auto auto 0;
  gap: 1rem 2rem;
}
div .bread li {
  color: var(--primary-color);
  position: relative;
}
div .bread li::after {
  content: " > ";
  color: var(--body-font-color);
  position: absolute;
  inset: 0 -1.5rem 0 auto;
  margin: auto 0;
}
div .bread li:last-child::after {
  content: "";
}
div .bread li a {
  color: var(--body-font-color);
}
div .bread li a:hover {
  text-decoration: underline;
}

/*
# 一覧ぺージ用カテゴリ(セレクトボックス)
------------------------*/
.global-select {
  width: 30rem;
  margin: 0 0 4.5rem auto;
}
.global-select select {
  padding: 1.5rem 3.7rem 1.5rem 1.5rem;
}

/*
# c-entry
------------------------*/
.c-entry {
  position: relative;
  padding: 10rem 0;
  background: url(../img/top/entry_bg.jpg) center/cover no-repeat;
}
.c-entry__panel {
  padding: 6rem;
  border-radius: 2rem;
  background: rgba(var(--accent-color-light-rgb), 0.9);
}
.c-entry__panel::before, .c-entry__panel::after {
  content: "";
  position: absolute;
}
.c-entry__panel::before {
  width: 20.3rem;
  height: 25.8rem;
  top: 11.5rem;
  left: 8.8rem;
  background: url(../img/top/entry-l_deco.png) center/100% no-repeat;
}
.c-entry__panel::after {
  width: 18.6rem;
  height: 30rem;
  right: 8.8rem;
  top: 10.2rem;
  background: url(../img/top/entry-r_deco.png) center/100% no-repeat;
}
.c-entry__title {
  margin-bottom: 5rem;
}
.c-entry__title::before {
  content: "";
  display: block;
  width: 15.5rem;
  height: 17.3rem;
  margin: 0 auto 3rem;
  background: url(../img/top/entry-ttl_illust.png) center/100% no-repeat;
}
.c-entry__buttons {
  margin-top: 6rem;
}
.c-entry__button {
  width: 48.6rem;
  margin: 0 auto 1.5rem;
  min-height: 7rem;
}
.c-entry__button.bs-icon--bi-box-arrow-up-right::before {
  font-weight: var(--font-weight-medium);
  right: 5%;
}

/*
# c-page-link-cards
------------------------*/
.c-page-link-cards__list {
  gap: 6rem;
}
.c-page-link-cards__item {
  width: 32rem;
  transition: transform 0.3s ease-in-out;
}
.c-page-link-cards__item:hover {
  transform: scale(1.02);
}
.c-page-link-cards__item--data .c-page-link-cards__link::before {
  background: url(../img/card/data-card_img.png) center/100% no-repeat;
}
.c-page-link-cards__item--recruit-worker .c-page-link-cards__link::before {
  background: url(../img/card/recruit-worker-card_img.png) bottom center/100% no-repeat;
}
.c-page-link-cards__item--recruit-manager .c-page-link-cards__link::before {
  background: url(../img/card/recruit-manager-card_img.png) center/100% no-repeat;
}
.c-page-link-cards__item--staff .c-page-link-cards__link::before {
  background: url(../img/card/staff-card_img.png) center/100% no-repeat;
}
.c-page-link-cards__link {
  padding: 5rem 3rem 0;
  min-height: 36rem;
}
.c-page-link-cards__link::before {
  position: absolute;
  content: "";
  width: 27.6rem;
  height: 18.3rem;
  inset: auto -5rem -3rem auto;
}
.c-page-link-cards__title {
  font-size: var(--font-size-22);
  height: 13rem;
}
.c-page-link-cards__more {
  font-size: var(--font-size-20);
  min-height: 5rem;
  margin-top: 3rem;
}
.c-page-link-cards__visual {
  width: 27.6rem;
  position: absolute;
  inset: auto -6rem -3rem auto;
}
.c-page-link-cards__item--1::before {
  content: "";
  position: absolute;
  width: 6rem;
  height: 6rem;
  top: -3rem;
  right: 1rem;
  background: url(../img/card/card01_illust.png) top center/contain no-repeat;
  z-index: 1;
}
.c-page-link-cards__item--2::before {
  content: "";
  position: absolute;
  width: 6rem;
  height: 6rem;
  top: -3rem;
  right: 1rem;
  background: url(../img/card/card02_illust.png) top center/contain no-repeat;
  z-index: 1;
}
.c-page-link-cards__item--3::before {
  content: "";
  position: absolute;
  width: 6rem;
  height: 6rem;
  top: -3rem;
  right: 1rem;
  background: url(../img/card/card03_illust.png) top center/contain no-repeat;
  z-index: 1;
}

/*==========================================
top
===========================================*/
/*
# p-top__mv
------------------------*/
.p-top__mv {
  width: 96.875%;
  min-height: 87rem;
  padding: 12rem 0 8rem;
  margin: 3rem auto;
  z-index: 1;
}
.p-top__mv::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 45.3225%;
  height: 40.4rem;
  border-radius: 20.2rem;
  background: #fdfbf6;
  inset: auto 23rem 4.8rem auto;
}
.p-top__mv-img {
  position: absolute;
  inset: auto auto 10rem 4rem;
  width: 56.9892%;
  margin: auto 0;
  z-index: 1;
}
.p-top__mv-img img {
  border-radius: 32.7rem;
}
.p-top__mv-img::before {
  position: absolute;
  content: "";
  width: 113.679%;
  height: 69.2rem;
  background: url(../img/top/mv/mv_illust.png) center/100% no-repeat;
  inset: -6.2rem auto auto -2rem;
}
.p-top__mv-copy {
  inset: auto 11.5rem 29rem auto;
  z-index: 2;
}
.p-top__mv-copy-ja {
  font-size: var(--font-size-36);
  line-height: 1.6;
}
.p-top__mv-copy-ja span {
  padding: 0 1rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.p-top__mv-copy-en {
  font-size: var(--font-size-26);
  margin: 3.5rem 0 0 5rem;
}
.p-top__mv-crown {
  inset: 15rem 10.5rem auto auto;
}
.p-top__mv-news {
  position: absolute;
  inset: auto -3rem -7.2rem auto;
  z-index: 3;
  width: 117.8rem;
  margin-left: auto;
  padding: 2.5rem 8.5rem 2.5rem 7.3rem;
  border-radius: 11.2rem 0 0 11.2rem;
}
.p-top__mv-news-title {
  margin-bottom: 2rem;
}
.p-top__mv-news-title .title-en {
  font-size: var(--font-size-20);
}
.p-top__mv-news-title .title-ja {
  font-size: var(--font-size-31);
  line-height: 1.6451612903;
}
.p-top__mv-news-link {
  font-size: var(--font-size-18);
  line-height: 1.6;
  padding: 1.5rem 4rem;
}
.p-top__mv-news-link:hover {
  opacity: 1;
  transform: translateX(1rem);
  background: var(--accent-color);
}
.p-top__mv-news-list {
  width: 80rem;
}
.p-top__mv-news-item {
  margin-bottom: 1.3rem;
}
.p-top__mv-news-item:last-child {
  margin-bottom: 0;
}
.p-top__mv-news-date {
  width: 9.5rem;
}
.p-top__mv-news-tag-list {
  width: calc(100% - 9.5rem);
}
.p-top__mv-news-tag-item::before {
  content: "|";
  margin-left: 1rem;
  color: var(--color-gray);
}
.p-top__mv-news-more {
  width: 20rem;
  min-height: 5rem;
  padding: 0 3rem;
  font-size: var(--font-size-13);
}

/*
# p-top-intro
------------------------*/
.p-top-intro {
  position: relative;
  padding-top: 20rem;
}
.p-top-intro__title::before {
  content: "";
  display: block;
  width: 15.6rem;
  height: 18.8rem;
  margin: 0 auto 5rem;
  background: url(../img/top/intro-ttl_illust.png) center/100% no-repeat;
}
.p-top-intro__title .title-ja {
  font-size: var(--font-size-36);
}
.p-top-intro::before, .p-top-intro::after {
  content: "";
  position: absolute;
}
.p-top-intro::before {
  width: 57.8rem;
  height: 77.1rem;
  left: 9rem;
  top: 11.7rem;
  background: url(../img/top/intro-l_illust.png) center/100% no-repeat;
}
.p-top-intro::after {
  width: 56rem;
  height: 104.1rem;
  right: 8rem;
  top: 10.5rem;
  background: url(../img/top/intro-r_illust.png) center/100% no-repeat;
}

/*
# p-top-points
------------------------*/
.p-top-points__list {
  gap: 39 rem;
}
.p-top-points__item {
  width: 33.4rem;
  padding: 3rem 2.5rem;
  border-radius: 3.6rem;
}
.p-top-points__num {
  font-size: var(--font-size-36);
}
.p-top-points__item-title {
  font-size: var(--font-size-28);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-gray-light);
}
.p-top-points__button {
  width: 44.8rem;
  margin: 7rem auto 0;
}

/*
# p-top-recruit
------------------------*/
.p-top-recruit {
  position: relative;
  padding: 11rem 0 16rem;
}
.p-top-recruit__title {
  margin-bottom: 10rem;
}
.p-top-recruit__title::before {
  content: "";
  display: block;
  width: 74.9rem;
  height: 20.7rem;
  margin: 0 auto 8.4rem;
  background: url(../img/top/recruit-ttl_illust.png) center/100% no-repeat;
}
.p-top-recruit__lead {
  margin-bottom: 4rem;
}
.p-top-recruit__list {
  gap: 3rem;
}
.p-top-recruit__item {
  width: 52rem;
  padding: 2rem 4rem 4rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.p-top-recruit__item-title {
  font-size: var(--font-size-28);
  border-bottom: 1px solid var(--color-gray-light);
  padding: 1rem 0 1rem 7rem;
  background: center left/5rem no-repeat;
  margin-bottom: 1rem;
}
.p-top-recruit__item-title--worker {
  background-image: url(../img/top/recruit-childcare-worker_ic.png);
}
.p-top-recruit__item-title--social {
  background-image: url(../img/top/recruit-social-worker_ic.png);
}
.p-top-recruit__item-title--support {
  background-image: url(../img/top/recruit-support-manager_ic.png);
}
.p-top-recruit__item-title--service {
  background-image: url(../img/top/recruit-service-manager_ic.png);
}
.p-top-recruit__item-text {
  flex-grow: 1;
}
.p-top-recruit__item-img {
  width: 29.1rem;
  position: absolute;
  inset: auto -5.5rem -2.5rem auto;
  z-index: -1;
}
.p-top-recruit__item-button {
  width: 22rem;
  min-height: 5rem;
  margin-top: 3.5rem;
  justify-content: flex-start;
  padding-left: 3rem;
}
.p-top-recruit::before, .p-top-recruit::after {
  content: "";
  position: absolute;
  background: center/100% no-repeat;
}
.p-top-recruit::before {
  width: 33.1rem;
  height: 80.7rem;
  left: 0;
  bottom: 28.5rem;
  background-image: url(../img/top/recruit-l_deco.png);
}
.p-top-recruit::after {
  width: 18.2rem;
  height: 107.1rem;
  right: 13.5rem;
  bottom: 13.8rem;
  background-image: url(../img/top/recruit-r_deco.png);
}

/*
# p-top-voice
------------------------*/
.p-top-voice {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(#2CC281 2px, transparent 2px), linear-gradient(to right, #2CC281 2px, transparent 2px);
  background-size: 15px 15px;
  background-color: #1CBD77;
}
.p-top-voice__title {
  text-align: left;
}
.p-top-voice__title .title-en {
  color: var(--color-white);
}
.p-top-voice__content {
  width: 65.5rem;
}
.p-top-voice::before {
  content: "";
  position: absolute;
  width: 46.40625%;
  height: 100%;
  right: 0;
  top: 0;
  background: url(../img/top/voice-r_bg.png) right center/100% no-repeat;
}
.p-top-voice::after {
  content: "";
  position: absolute;
  width: 24.9rem;
  height: 16.1rem;
  left: 11.4rem;
  bottom: 0;
  background: url(../img/top/voice-lb_illust.png) center/100% no-repeat;
}
.p-top-voice__button {
  margin-top: 8rem;
  width: 35.2rem;
}

/*
# p-top-message
------------------------*/
.p-top-message {
  padding: 16rem 0;
  position: relative;
}
.p-top-message__title {
  text-align: left;
}
.p-top-message__title .title-en {
  margin-bottom: 2.5rem;
}
.p-top-message__title .title-ja span {
  padding: 0 1rem;
}
.p-top-message__content {
  width: 56rem;
  margin-left: auto;
}
.p-top-message__img {
  width: 86.6rem;
  position: absolute;
  inset: 16.8rem auto auto 0;
}
.p-top-message__img img {
  border-radius: 0 18.1rem 18.1rem 0;
}
.p-top-message__img-text {
  font-size: var(--font-size-26);
  width: -moz-fit-content;
  width: fit-content;
  margin: 6rem 0 0 auto;
  letter-spacing: 0.1em;
}
.p-top-message__button {
  width: 44.8rem;
  margin-top: 7rem;
}

/*==========================================
about
===========================================*/
.p-about-vision__title::before {
  content: "";
  display: block;
  width: 11.5rem;
  height: 12.8rem;
  margin: 0 auto 7rem;
  background: url(../img/about/vision-ttl_illust.png) center/100% no-repeat;
}
.p-about-vision__img {
  position: absolute;
}
.p-about-vision__img--l {
  width: 40.1rem;
  inset: -8.5rem auto auto -10rem;
}
.p-about-vision__img--r {
  width: 37.9rem;
  inset: 11.3rem -10rem auto auto;
}

.p-about-commitment {
  position: relative;
}
.p-about-commitment__title {
  text-align: left;
}
.p-about-commitment__lead {
  margin-bottom: 6rem;
}
.p-about-commitment__list {
  display: grid-lanes;
  row-gap: 7rem;
}
.p-about-commitment__item {
  width: 52rem;
  padding: 3rem;
}
.p-about-commitment__item:nth-child(2) {
  position: relative;
  transform: translateY(21rem);
}
.p-about-commitment__item:nth-child(2)::after {
  content: "";
  position: absolute;
  width: 13.9rem;
  height: 11.3rem;
  inset: -11.3rem 7.4rem auto auto;
  background: url(../img/about/commitment-item02_illust.png) center/100% no-repeat;
}
.p-about-commitment__num {
  margin-bottom: 1rem;
}
.p-about-commitment::after {
  content: "";
  position: absolute;
  width: 17rem;
  height: 14.7rem;
  inset: auto calc(50% - 40rem) 0 auto;
  background: url(../img/about/commitment-btm_illust.png) center/100% no-repeat;
}

.p-about-future__lead {
  margin-bottom: 8rem;
}
.p-about-future__block {
  position: relative;
  margin-bottom: 8rem;
  padding-top: 8.7rem;
}
.p-about-future__block:last-child {
  margin-bottom: 0;
}
.p-about-future__block:nth-child(odd) .p-about-future__block-img {
  left: 0;
}
.p-about-future__block:nth-child(odd) .p-about-future__block-content {
  margin-left: auto;
}
.p-about-future__block:nth-child(even) .p-about-future__block-img {
  right: 0;
}
.p-about-future__block-img {
  width: 50rem;
  position: absolute;
  top: 0;
}
.p-about-future__block-img img {
  border-radius: 15rem;
}
.p-about-future__block-content {
  width: 54rem;
}
.p-about-future__block-title {
  font-size: var(--font-size-40);
  margin-bottom: 6rem;
}
.p-about-future__block-title span {
  padding: 0 1rem;
}

.p-about-company__table {
  margin-bottom: 11.5rem;
}
.p-about-company .p-about-company__access {
  padding: 8rem 10rem;
}
.p-about-company .p-about-company__access-title {
  width: 30rem;
  margin-bottom: 0;
}
.p-about-company .p-about-company__access-panel {
  width: 53rem;
}
.p-about-company .p-about-company__access-list-item {
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
}
.p-about-company .p-about-company__access-list-item:last-child {
  margin-bottom: 0;
}
.p-about-company .p-about-company__access-list-item--address {
  background: url(../img/about/access-pin_ic.svg) left top 0.85rem/1.4rem no-repeat;
}
.p-about-company .p-about-company__access-list-item--tel {
  background: url(../img/about/access-tel_ic.svg) left top 0.85rem/2rem no-repeat;
}
.p-about-company .p-about-company__access-list-item--time {
  background: url(../img/about/access-calendar_ic.svg) left top 0.85rem/1.6rem no-repeat;
}
.p-about-company .p-about-company__access-list-item--time .p-about-company__access-list-item-time {
  gap: 2rem;
}
.p-about-company .p-about-company__access-list-item--time dt::after {
  content: ":";
  padding: 0 0.5rem;
}
.p-about-company .p-about-company__access-list-item--car {
  background: url(../img/about/access-car_ic.svg) left top 0.85rem/2rem no-repeat;
}

/*==========================================
staff
===========================================*/
.p-staff-voice__title {
  margin-bottom: 6rem;
}
.p-staff-voice__title::before {
  content: "";
  display: block;
  width: 14.4rem;
  height: 9.9rem;
  margin: 0 auto 6rem;
  background: url(../img/staff/vision-ttl_illust.png) center/100% no-repeat;
}
.p-staff-voice__lead {
  margin-bottom: 10rem;
}
.p-staff-voice__section {
  margin-bottom: 8rem;
  padding: 8rem 10rem;
  background: rgba(var(--accent-color-dark-rgb), 0.3);
}
.p-staff-voice__section:last-child {
  margin-bottom: 0;
}
.p-staff-voice__section-title {
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--font-size-36);
  text-align: center;
  margin: 0 auto 6.5rem;
  padding: 0 2rem;
}
.p-staff-voice__section-title::before, .p-staff-voice__section-title::after {
  position: absolute;
  content: "";
  width: 1.9rem;
  height: 6rem;
  background: url(../img/staff/voice-section-ttl_deco.png) center/100% no-repeat;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.p-staff-voice__section-title::before {
  left: -3rem;
}
.p-staff-voice__section-title::after {
  right: -3rem;
  transform: scale(-1, 1);
}
.p-staff-voice__list {
  gap: 4rem;
}
.p-staff-voice__item {
  width: 52rem;
  padding: 8.5rem 3rem 1rem;
}
.p-staff-voice__item::before, .p-staff-voice__item::after {
  position: absolute;
  content: "";
}
.p-staff-voice__item::before {
  width: 5rem;
  height: 5rem;
  top: 2rem;
  left: 3rem;
  border-radius: 50%;
  background: url(../img/staff/quote_ic.svg) center/45% no-repeat, var(--primary-color);
}
.p-staff-voice__item::after {
  width: 4.5rem;
  height: 8rem;
  inset: auto 2rem 2rem auto;
}
.p-staff-voice__item:nth-child(1)::after {
  background: url(../img/staff/answer-item01_illust.png) center bottom/100% no-repeat;
}
.p-staff-voice__item:nth-child(2)::after {
  background: url(../img/staff/answer-item02_illust.png) center bottom/100% no-repeat;
}
.p-staff-voice__item:nth-child(3)::after {
  background: url(../img/staff/answer-item03_illust.png) center bottom/100% no-repeat;
}
.p-staff-voice__item:nth-child(4)::after {
  background: url(../img/staff/answer-item04_illust.png) center bottom/100% no-repeat;
}
.p-staff-voice__quote {
  padding-bottom: 2.5rem;
  border-bottom: 1px dotted;
}
.p-staff-voice__note {
  font-size: var(--font-size-16);
  padding: 3.5rem 0;
}

.p-staff-daily__inbox::before, .p-staff-daily__inbox::after {
  position: absolute;
  content: "";
}
.p-staff-daily__inbox::before {
  width: 24.4rem;
  height: 20.7rem;
  background: url(../img/staff/daily-l_illust.png) center/100% no-repeat;
  inset: 10rem auto auto -2.3rem;
}
.p-staff-daily__inbox::after {
  width: 30.6rem;
  height: 13.1rem;
  background: url(../img/staff/daily-r_illust.png) center/100% no-repeat;
  inset: 17.5rem -2.3rem auto auto;
}
.p-staff-daily__lead {
  margin-bottom: 9rem;
}
.p-staff-daily__gallery-item {
  width: 25%;
  height: 35rem;
}

/*==========================================
data
===========================================*/
.p-data-numbers__lead {
  margin-bottom: 11.5rem;
}
.p-data-numbers__list {
  row-gap: 5rem;
}
.p-data-numbers__item {
  width: 52rem;
  padding: 3rem;
  background: rgba(var(--accent-color-dark-rgb), 0.3);
}
.p-data-numbers__item-title {
  font-size: var(--font-size-26);
  margin-bottom: 2rem;
  text-align: center;
  padding: 0.5rem;
}
.p-data-numbers__item-title::before {
  position: absolute;
  content: "";
  width: 6rem;
  height: 1.9rem;
  inset: -4.5rem 0 auto;
  margin: 0 auto;
  background: url(../img/data/numbers-item_deco.png) center/100% no-repeat;
}
.p-data-numbers__big {
  font-size: 6rem;
}
.p-data-numbers__illust {
  width: 37.2rem;
  margin: 0 auto;
  text-align: center;
}
.p-data-numbers__compose {
  width: 25.5rem;
}
.p-data-numbers__compose li {
  border-bottom: 1px dotted;
  padding: 1rem 0 1rem 2rem;
  font-size: var(--font-size-16);
  line-height: 1.5;
}
.p-data-numbers__compose li::before {
  position: absolute;
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  top: 1.6rem;
  left: 0;
}
.p-data-numbers__compose li small {
  font-size: var(--font-size-13);
  letter-spacing: 0.02rem;
}
.p-data-numbers__compose li .p-data-numbers__compose-percent {
  font-size: var(--font-size-18);
}
.p-data-numbers__compose li:has(.color-pink)::before {
  background: var(--color-pink);
}
.p-data-numbers__compose li:has(.color-orange)::before {
  background: var(--color-orange);
}
.p-data-numbers__compose li:has(.color-purple)::before {
  background: var(--color-purple);
}
.p-data-numbers__compose li:has(.color-green)::before {
  background: var(--color-green);
}
.p-data-numbers__graph {
  width: 17.4rem;
  height: 16.9rem;
}
.p-data-numbers__ages::before {
  position: absolute;
  content: "";
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: url(../img/data/numbers-item-ages_iic.png) center/5.9rem no-repeat, var(--accent-color-dark);
  margin: auto;
  inset: 0;
}
.p-data-numbers__ages li {
  width: 50%;
  font-size: var(--font-size-30);
}
.p-data-numbers__ages li:nth-child(even) {
  text-align: right;
}
.p-data-numbers__ages li .bg-color-accent-dark {
  font-size: var(--font-size-22);
  padding: 0 1rem;
}
.p-data-numbers__ages li .color-primary {
  font-size: var(--font-size-48);
}
.p-data-numbers__hours {
  padding-left: 15.5rem;
  text-align: left;
  background: url(../img/data/numbers-item-overtime_ic.png) left center/12.5rem no-repeat;
}
.p-data-numbers__hours .com-tex {
  font-size: var(--font-size-20);
}

.p-data-environment {
  position: relative;
}
.p-data-environment__inbox::after {
  content: "";
  position: absolute;
  width: 17rem;
  height: 14.7rem;
  left: 10rem;
  bottom: -8rem;
  background: url(../img/data/environment-btm_illust.png) center/100% no-repeat;
  pointer-events: none;
}
.p-data-environment__title {
  text-align: left;
}
.p-data-environment__lead {
  width: 50rem;
}
.p-data-environment__list {
  row-gap: 8rem;
  transform: translateY(-9rem);
}
.p-data-environment__item {
  width: 52rem;
  padding: 3rem;
  border-radius: 1.5rem;
}
.p-data-environment__item:nth-child(even) {
  transform: translateY(25rem);
}
.p-data-environment__item:nth-child(1)::after {
  position: absolute;
  content: "";
  width: 13.9rem;
  height: 11.3rem;
  background: url(../img/data/environment-item01_illust.png) center/100% no-repeat;
  inset: -10.5rem 7.5rem auto auto;
}
.p-data-environment__item:nth-child(2)::after {
  position: absolute;
  content: "";
  width: 5.9rem;
  height: 6.4rem;
  background: url(../img/data/environment-item02_illust.png) center/100% no-repeat;
  inset: -3.6rem 7.5rem auto auto;
}

.p-data-benefits__table tr:nth-child(odd) {
  border-radius: 1rem;
  background: rgba(var(--accent-color-dark-rgb), 0.3);
}

/*==========================================
recruit-worker / recruit-manager
===========================================*/
/*
# p-recruit-lead（05 CARE / 06 LEAD 共通）
------------------------*/
.p-recruit-lead__inbox {
  background: url(../img/recruit-worker/care-l_deco.png) left top 25rem/11.5rem no-repeat, url(../img/recruit-manager/lead-r_deco.png) right 2rem top 7rem/10.1rem no-repeat;
}
.p-recruit-lead__title::before {
  content: "";
  display: block;
  margin: 0 auto 7rem;
  background: center/100% no-repeat;
}

.p-recruit-worker-care .p-recruit-lead__title::before {
  background-image: url(../img/recruit-worker/care-ttl_illust.png);
  width: 8.9rem;
  height: 10rem;
}

.p-recruit-manager-lead .p-recruit-lead__title::before {
  background-image: url(../img/recruit-manager/lead-ttl_illust.png);
  width: 9.4rem;
  height: 9.4rem;
}

/*
# p-recruit-role（05 NURSERY TEACHER / 06 MANAGEMENT 共通）
------------------------*/
.p-recruit-role {
  position: relative;
  padding-top: 4.5rem;
}
.p-recruit-role__img {
  width: 28.3rem;
  position: absolute;
  inset: -11rem auto auto -7rem;
}
.p-recruit-role__title {
  padding-top: 4rem;
  background: url(../img/recruit-worker/nursery-rt_deco.png) right 10rem top/13.8rem no-repeat;
}
.p-recruit-role__intro {
  margin-bottom: 6rem;
}
.p-recruit-role__detail {
  width: 52rem;
  padding: 3rem;
}
.p-recruit-role__detail:last-child {
  position: relative;
}
.p-recruit-role__detail:last-child::before {
  position: absolute;
  content: "";
  width: 8.8rem;
  height: 7.5rem;
  inset: -5.5rem 0 auto auto;
  background: url(../img/recruit-worker/item02_illust.png) center/100% no-repeat;
}
.p-recruit-role__detail-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.p-recruit-role__detail-list li:last-child {
  margin-bottom: 0;
}
.p-recruit-role__detail-list li::before {
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: var(--primary-color);
  inset: 1.3rem auto auto 0;
  margin: auto 0;
  border-radius: 50%;
}
.p-recruit-role__detail-salary {
  margin-top: 9rem;
}
.p-recruit-role__detail-salary .p-recruit-role__detail-title {
  text-align: center;
}
.p-recruit-role::after {
  content: "";
  position: absolute;
  width: 26.3rem;
  height: 7.8rem;
  background: url(../img/recruit-worker/child-support-rt_deco.png) center/100% no-repeat;
  inset: auto 28rem -3rem auto;
}

.p-recruit-worker-child .p-recruit-role__title,
.p-recruit-manager-service .p-recruit-role__title {
  background: none;
}
.p-recruit-worker-child .p-recruit-role__img,
.p-recruit-manager-service .p-recruit-role__img {
  inset: -5rem auto auto 32rem;
}
.p-recruit-worker-child .p-recruit-role__detail,
.p-recruit-manager-service .p-recruit-role__detail {
  background: rgba(var(--accent-color-dark-rgb), 0.3);
}
.p-recruit-worker-child .p-recruit-role__detail-salary-table tr:nth-child(odd),
.p-recruit-manager-service .p-recruit-role__detail-salary-table tr:nth-child(odd) {
  background: rgba(var(--accent-color-dark-rgb), 0.3);
}
.p-recruit-worker-child::after,
.p-recruit-manager-service::after {
  background: none;
}

/*
# p-recruit-schedule（05/06 共通）
------------------------*/
.p-recruit-schedule {
  position: relative;
}
.p-recruit-schedule::before {
  content: "";
  position: absolute;
  width: 28.4rem;
  height: 10.3rem;
  background: url(../img/recruit-worker/child-support-btm_illust.png) center/100% no-repeat;
  inset: -9.8rem 29rem auto auto;
}
.p-recruit-schedule__list {
  gap: 5rem 6rem;
  margin-top: 3rem;
}
.p-recruit-schedule__item {
  width: 32rem;
  padding: 2.5rem 3rem;
  border-radius: 1.5rem;
}
.p-recruit-schedule__item::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10.5px 0px 10.5px 12px;
  border-color: transparent transparent transparent var(--primary-color);
  inset: 0 -4rem 0 auto;
  margin: auto 0;
}
.p-recruit-schedule__item:nth-child(3n)::after, .p-recruit-schedule__item:last-child::after {
  display: none;
}
.p-recruit-schedule__time {
  font-size: var(--font-size-26);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--color-gray-light);
}

/*
# p-recruit-faq（05/06 共通）
------------------------*/
.p-recruit-faq__item {
  padding: 4rem;
  border-radius: 1.5rem;
  margin-bottom: 5rem;
  background: rgba(var(--accent-color-dark-rgb), 0.2);
}
.p-recruit-faq__item:last-child {
  margin-bottom: 0;
}
.p-recruit-faq__q {
  font-size: var(--font-size-22);
  margin-bottom: 3rem;
}
.p-recruit-faq__q::before {
  content: "Q.";
}
.p-recruit-faq__q, .p-recruit-faq__a {
  position: relative;
  padding-left: 6rem;
}
.p-recruit-faq__q::before, .p-recruit-faq__a::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-48);
  line-height: 0.5;
}
.p-recruit-faq__a::before {
  content: "A.";
}

/*----------------------------------
  詳細ページのカテゴリー表示(タイトル下部)
  ----------------------------------*/
.single__post-meta time {
  font-size: var(--font-size-14);
  width: 9.5rem;
  padding: 0.3rem 0;
}
.single__post-meta .category-label {
  width: calc(100% - 9.5rem);
  font-size: var(--font-size-14);
  gap: 5px;
  margin-left: 1rem;
}
.single__post-meta .category-label li a {
  padding: 0.3rem 1rem;
}

/*==========================================
    contact
    ===========================================*/
.p-contact__form {
  width: 98rem;
  margin: 0 auto 5.5rem;
}
.p-contact__form .p-contact__form-item {
  border-bottom: none;
  padding: 0;
  margin-bottom: 2rem;
}
.p-contact__form .p-contact__form-item:last-child {
  margin-bottom: 0;
}
.p-contact__form .p-contact__form-item .p-contact__form-label .form_option,
.p-contact__form .p-contact__form-item .p-contact__form-label .form_required {
  margin-left: 1rem;
}
.p-contact__form .p-contact__form-item .p-contact__form-input .p-contact__form-list {
  gap: 1.5rem;
}
.p-contact__form .p-contact__form-item.p-contact__form-privacy .p-contact__form-label {
  text-align: center;
}
.p-contact__form-select {
  width: 20rem;
}
.p-contact__form-select::after {
  inset: 0 1.6rem 0 auto;
  width: 0.8rem;
  height: 0.8rem;
}
.p-contact__form .upload-item-wrap .thumb {
  width: 20rem;
  margin-right: 2.5rem;
}
.p-contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 13rem;
}
.p-contact__form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
.p-contact__form .upload-item-wrap .ancion-btn-wrap .upload-button {
  font-size: var(--font-size-13);
}
.p-contact input[type=button],
.p-contact input[type=submit],
.p-contact .p-contact__submits-wrap button {
  height: 6.5rem;
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-23);
}
.column__wrap .column__list .column__post:has(.column__post-thumb) a {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb {
  width: 21rem;
  height: 20rem;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb .img-eff {
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 82rem;
}

/*==========================================
  プライバシーポリシー(LPフレーム時)
  ===========================================*/