<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ==========================================================================
   Cards project
   ========================================================================== */
.p-cards {
  --list-margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2.125rem;
  gap: 2.125rem;
  grid-row-gap: 2.5rem;
  row-gap: 2.5rem;
  margin-top: 2.5rem;
  margin-left: 0;
  list-style: none;
}
@media (min-width: 48em) {
  .p-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 80em) {
  .p-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 48em) {
  .p-cards.--two-columns {
    gap: 1.875rem;
  }
}
@media (min-width: 80em) {
  .p-cards.--two-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-cards:has(&gt; .c-card.-sm) {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 22.5em) {
  .p-cards:has(&gt; .c-card.-sm) {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (min-width: 48em) {
  .p-cards:has(&gt; .c-card.-sm) {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media (min-width: 56.25em) {
  .p-cards:has(&gt; .c-card.-sm) {
    -moz-column-gap: 80px;
         column-gap: 80px;
  }
}

/* ==========================================================================
   description cards project
   ========================================================================== */
.p-desc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

/* ==========================================================================
   doctors project
   ========================================================================== */
.p-doctors {
  margin-top: 1.875rem;
}
@media (min-width: 48em) {
  .p-doctors {
    margin-top: 2.5rem;
  }
}
@media (min-width: 80em) {
  .p-doctors {
    margin-top: 2.5rem;
  }
}

.p-doctors ul {
  margin-top: 0;
  margin-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-column-gap: 3rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.p-doctors ul li + li {
  margin-top: 0;
}
.p-doctors ul a {
  text-decoration: none;
}
.p-doctors ul p {
  margin-top: 0;
}
@media (min-width: 80em) {
  .p-doctors ul {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}

.p-doctors li {
  margin-top: 0;
  padding-block: 1.875rem;
  border-top: 0.0625rem solid var(--color-black-alpha-100);
}
@media (min-width: 48em) {
  .p-doctors li {
    padding-block: 2.1875rem;
  }
}
@media (min-width: 80em) {
  .p-doctors li {
    padding-block: 2.5rem;
  }
}

/* ==========================================================================
   external-list project
   ========================================================================== */
.p-external {
  --gap: 2rem;
  position: relative;
}

.p-external__inner {
  margin-top: -1.5rem;
  padding-top: var(--gap);
  padding-bottom: var(--gap);
  overflow-x: auto;
}

.p-external__wrapper {
  position: relative;
}
@media (min-width: 80em) {
  .p-external__wrapper {
    --bleed: calc(100vw - 100% - var(--space) - var(--scrollbar-width));
    --space: 80px;
  }
}

.p-external__list {
  display: flex;
  flex-direction: row;
  margin-right: -1.25rem;
}
@media (min-width: 48em) {
  .p-external__list {
    margin-right: -1.875rem;
  }
}
@media (min-width: 80em) {
  .p-external__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    margin-right: 0;
    grid-column-gap: var(--gap);
    -moz-column-gap: var(--gap);
         column-gap: var(--gap);
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }
}

.p-external__item {
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: var(--gap);
}
@media (min-width: 80em) {
  .p-external__item {
    padding-right: 0;
  }
}

.p-external__link {
  --transition-ease: cubic-bezier(0.33, 1, 0.68, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  width: 11.25rem;
  height: 100%;
  background-color: #fff;
  border-radius: 0.625rem;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.05);
  transition: box-shadow 300ms var(--transition-ease);
}
@media (min-width: 48em) {
  .p-external__link {
    width: 12.5rem;
  }
}
@media (min-width: 80em) {
  .p-external__link {
    width: 100%;
  }
}
.p-external__link::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: #012b2f;
  border-radius: 0.625rem;
  mix-blend-mode: screen;
  transition: background-color 300ms var(--transition-ease);
  content: "";
}
.p-external__link::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.0625rem solid transparent;
  border-radius: 0.625rem;
  transition: border-color 300ms var(--transition-ease);
  content: "";
}
.p-external__link:hover {
  color: #555;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.15);
  transition: box-shadow 300ms var(--transition-ease);
}
.p-external__link:hover::before {
  background-color: transparent;
}
.p-external__link:hover::after {
  border-color: #00a4b4;
}
.p-external__link div {
  padding: 0.9375rem 1.25rem;
  border-top: 0.0625rem solid var(--color-black-alpha-100);
}

.p-external__image {
  border-top-right-radius: 0.625rem;
  border-top-left-radius: 0.625rem;
  filter: saturate(0);
  transition: filter 300ms var(--transition-ease);
}
.p-external__link:hover .p-external__image {
  filter: saturate(1);
}

.p-external__textbox {
  font-size: 0.8125rem;
  font-feature-settings: "palt";
}

@media (min-width: 80em) {
  .p-external__bg {
    position: absolute;
    top: 2rem;
    left: 0;
    z-index: -10;
    width: calc(100% + var(--bleed));
    height: 100%;
    margin-left: calc(var(--bleed) / 2 * -1);
    background-color: #e1f2f3;
    border-radius: 1rem;
    content: "";
  }
}

.p-external-list__bg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -10;
  width: calc(100% - 10px);
  max-width: 100rem;
  height: 15rem;
  background-color: #e1f2f3;
  border-radius: 1rem 0 0 1rem;
}
@media (min-width: 33.75em) {
  .p-external-list__bg {
    width: calc(100% - 15px);
  }
}
@media (min-width: 48em) {
  .p-external-list__bg {
    width: calc(100% - 20px);
  }
}
@media (min-width: 56.25em) {
  .p-external-list__bg {
    width: calc(100% - 30px);
  }
}
@media (min-width: 80em) {
  .p-external-list__bg {
    display: none;
  }
}

.p-external__swipe-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  background-color: rgba(225, 242, 243, 0.2);
  border-radius: 0.625rem;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 600ms var(--ease-out-cubic);
}
@media (min-width: 80em) {
  .p-external__swipe-hint {
    display: none;
  }
}
.p-external__swipe-hint.is-inview {
  opacity: 1;
}
.p-external__swipe-hint.is-animationend {
  opacity: 0;
}

.p-external__swipe-hint-arrow,
.p-external__swipe-hint-hand {
  fill: #555;
}
.p-external__swipe-hint.is-inview .p-external__swipe-hint-arrow,
.p-external__swipe-hint.is-inview .p-external__swipe-hint-hand {
  animation: swipe-animation 1200ms var(--ease-out-cubic) 600ms 2 forwards;
}

/* ==========================================================================
   description cards project
   ========================================================================== */
.p-flows {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
  margin-left: 0;
  counter-reset: count;
  grid-row-gap: 2.25rem;
  row-gap: 2.25rem;
}
.p-flows &gt; li:not(:last-of-type) {
  position: relative;
}
.p-flows &gt; li:not(:last-of-type)::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2.25rem;
  height: 2.25rem;
  transform: translate(-50%, 2.25rem);
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzYiIGhlaWdodD0iMzciIHZpZXdCb3g9IjAgMCAzNiAzNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTI0LjIxIDE0LjE5OTdMMTggMjIuOTg5N0wxMS43OSAxNC4xOTk3IiBzdHJva2U9IiNDMUMxQjQiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
}

/* ==========================================================================
   footer project
   ========================================================================== */
/* nav */
.p-footer {
  --theme-color: #739aff;
  --toggle-switch-width: 1.25rem;
  margin-top: 4.0625rem;
  border-top: 0.0625rem solid var(--color-black-alpha-100);
}
@media (min-width: 48em) {
  .p-footer {
    margin-top: 5rem;
  }
}

/* list */
.p-footer__list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 0;
  margin-left: 0;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  grid-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  list-style: none;
  grid-row-gap: 0.125rem;
  row-gap: 0.125rem;
}
@media (min-width: 48em) {
  .p-footer__list {
    grid-template-columns: 1fr 1fr;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    row-gap: 0.375rem;
  }
}
@media (min-width: 80em) {
  .p-footer__list {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 3.75rem;
    row-gap: 0.625rem;
  }
}

/* item */
.p-footer__item {
  margin-top: 0;
}

/* link */
.p-footer__link {
  width: 100%;
  font-size: 0.84375rem;
  -moz-column-gap: 0.3125rem;
       column-gap: 0.3125rem;
}
@media (min-width: 48em) {
  .p-footer__link {
    font-size: 1rem;
  }
}
@media (min-width: 80em) {
  .p-footer__link {
    font-size: 1.125rem;
  }
}

/* current */
.p-footer__link.is-current {
  color: #739aff;
}
.p-footer__link.is-current .c-toggle-btn__text {
  background-position: 0 100%;
}
.p-footer__link.is-current .c-toggle-btn__icon::before {
  transform: translateX(100%);
}

/* ==========================================================================
   footer-business project
   ========================================================================== */
.p-footer-business {
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 0.0625rem solid var(--color-black-alpha-100);
}
@media (min-width: 48em) {
  .p-footer-business {
    padding-top: 3.4375rem;
  }
}
@media (min-width: 80em) {
  .p-footer-business {
    padding-top: 4.375rem;
  }
}
.p-footer-business p {
  margin-top: 0;
}
.p-footer-business a {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.75rem;
  text-decoration: none;
  -moz-column-gap: 0.3125rem;
       column-gap: 0.3125rem;
}

/* ==========================================================================
   footer-business project
   ========================================================================== */
.p-footer-company {
  margin-left: 0;
}
.p-footer-company ul {
  margin-top: 0;
  margin-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-feature-settings: "palt";
  row-gap: 0.5rem;
}
.p-footer-company ul li + li {
  margin-top: 0;
}
.p-footer-company ul a {
  text-decoration: none;
}
.p-footer-company ul p {
  margin-top: 0;
}
@media (min-width: 48em) {
  .p-footer-company ul {
    flex-direction: row;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
@media (min-width: 80em) {
  .p-footer-company ul {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.p-footer-company ul a {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8125rem;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}
@media (min-width: 48em) {
  .p-footer-company ul a {
    font-size: 0.875rem;
  }
}
@media (min-width: 80em) {
  .p-footer-company ul a {
    font-size: 0.9375rem;
  }
}
.p-footer-company ul i {
  width: 1rem;
  height: 1rem;
}
@media (min-width: 48em) {
  .p-footer-company ul i {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.0625rem;
  }
}
@media (min-width: 80em) {
  .p-footer-company ul i {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.125rem;
  }
}
.p-footer-company ul a.is-current {
  margin-left: 0.25rem;
  color: var(--theme-color);
  font-weight: 700;
  font-family: var(--font-db);
}
.p-footer-company ul a.is-current i {
  display: none;
}
.p-footer-company ul a.is-current p {
  position: relative;
  padding-left: 1.75em;
}
.p-footer-company ul a.is-current p::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 0.875em;
  height: 1.625em;
  background-color: var(--theme-color, currentColor);
  border-radius: 0.4375em/0.8125em;
  transform: rotate(45deg);
  content: "";
}

/* ==========================================================================
   footer-business project
   ========================================================================== */
.p-footer-recruit {
  margin-left: 0;
}
.p-footer-recruit ul {
  margin-top: 0;
  margin-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-feature-settings: "palt";
  row-gap: 0.5rem;
}
.p-footer-recruit ul li + li {
  margin-top: 0;
}
.p-footer-recruit ul a {
  text-decoration: none;
}
.p-footer-recruit ul p {
  margin-top: 0;
}
@media (min-width: 48em) {
  .p-footer-recruit ul {
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
@media (min-width: 80em) {
  .p-footer-recruit ul {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.p-footer-recruit ul a {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8125rem;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}
@media (min-width: 48em) {
  .p-footer-recruit ul a {
    font-size: 0.875rem;
  }
}
@media (min-width: 80em) {
  .p-footer-recruit ul a {
    font-size: 0.9375rem;
  }
}
.p-footer-recruit ul i {
  width: 1rem;
  height: 1rem;
}
@media (min-width: 48em) {
  .p-footer-recruit ul i {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: -0.125rem;
  }
}
@media (min-width: 80em) {
  .p-footer-recruit ul i {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: -0.125rem;
  }
}
.p-footer-recruit a.is-current {
  margin-left: 0.25rem;
  color: var(--theme-color);
  font-weight: 700;
  font-family: var(--font-db);
}
.p-footer-recruit a.is-current i {
  display: none;
}
.p-footer-recruit a.is-current p {
  position: relative;
  padding-left: 1.75em;
}
.p-footer-recruit a.is-current p::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 0.875em;
  height: 1.625em;
  background-color: var(--theme-color, currentColor);
  border-radius: 0.4375em/0.8125em;
  transform: rotate(45deg);
  content: "";
}

/* ==========================================================================
   Global-footer project
   ========================================================================== */
.p-global-footer {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 6px;
  width: 100%;
  font-feature-settings: "palt";
  letter-spacing: var(--ls-normal);
}
.p-global-footer ul {
  margin-top: 0;
  margin-left: 0;
  list-style: none;
}
.p-global-footer li + li {
  margin-top: 0;
}
.p-global-footer a {
  text-decoration: none;
}
.p-global-footer p {
  margin-top: 0;
}
@media (min-width: 48em) {
  .p-global-footer {
    flex-direction: row;
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
    align-items: center;
  }
}
.p-global-footer .sns {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: center;
  margin-right: 10px;
  margin-left: -0.1875rem;
}
.p-global-footer .sns a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-global-footer .other {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -0.625rem;
  font-size: 0.75rem;
  line-height: 2.2;
}
@media (min-width: 48em) {
  .p-global-footer .other {
    margin-top: 0;
    margin-left: -0.9375rem;
  }
}
.p-global-footer .other li {
  position: relative;
  padding-inline: 0.625rem;
}
@media (min-width: 48em) {
  .p-global-footer .other li {
    padding-inline: 0.9375rem;
  }
}
.p-global-footer .other li:not(:last-of-type)::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.0625rem;
  height: 65%;
  content: "";
  background-color: var(--color-black-alpha-100);
  transform: translateY(-50%);
}
.p-global-footer .copyright {
  margin-top: 0;
  font-family: var(--font-en);
  font-size: 12.5px;
  line-height: 1;
}

/* ==========================================================================
   header project
   ========================================================================== */
/* base */
.l-main .p-header {
  margin-top: 1.5rem;
}
@media (min-width: 48em) {
  .l-main .p-header {
    margin-top: 2rem;
  }
}
@media (min-width: 80em) {
  .l-main .p-header {
    margin-top: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 0.0625rem solid var(--color-black-alpha-100);
  }
}
@media (min-width: 90em) {
  .l-main .p-header {
    margin-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
@media (min-width: 100em) {
  .l-main .p-header {
    margin-top: 5rem;
    padding-bottom: 5rem;
  }
}
.l-main .p-header.--company, .l-main .p-header.--recruit {
  padding-bottom: 1.875rem;
}
@media (min-width: 48em) {
  .l-main .p-header.--company, .l-main .p-header.--recruit {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 56.25em) {
  .l-main .p-header.--company, .l-main .p-header.--recruit {
    border-bottom: 0.0625rem solid var(--color-black-alpha-100);
  }
}
@media (min-width: 80em) {
  .l-main .p-header.--company, .l-main .p-header.--recruit {
    padding-bottom: 3.125rem;
  }
}
@media (min-width: 90em) {
  .l-main .p-header.--company, .l-main .p-header.--recruit {
    padding-bottom: 3.75rem;
  }
}

/* inner */
.p-header__inner {
  display: grid;
  grid-template: "back" auto "title" auto/1fr;
  align-items: center;
  grid-row-gap: 1rem;
  row-gap: 1rem;
}
@media (min-width: 90em) {
  .p-header__inner {
    grid-template: "back" auto "title" auto/auto 1fr;
    -moz-column-gap: 1.875rem;
         column-gap: 1.875rem;
  }
}

/* back */
.p-header__back {
  display: flex;
  grid-area: back;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8125rem;
  letter-spacing: var(--ls-normal);
  text-decoration: none;
  -moz-column-gap: 0.3125rem;
       column-gap: 0.3125rem;
}
@media (min-width: 48em) {
  .p-header__back {
    font-size: 0.875rem;
  }
}
.p-header__back p {
  margin-top: 0;
  font-family: var(--font-uc-r);
}

/* title */
.p-header__title {
  grid-area: title;
  margin-top: 0;
  font-size: 1.5625rem;
  line-height: 1.67;
  letter-spacing: 0;
}
@media (min-width: 48em) {
  .p-header__title {
    font-size: 2rem;
  }
}
@media (min-width: 80em) {
  .p-header__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 90em) {
  .p-header__title {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.p-header.--add-navigation {
  /* inner */
}
.p-header.--add-navigation ul {
  margin-top: 0;
  margin-left: 0;
  list-style: none;
}
.p-header.--add-navigation li + li {
  margin-top: 0;
}
.p-header.--add-navigation a {
  text-decoration: none;
}
.p-header.--add-navigation p {
  margin-top: 0;
}
.p-header.--add-navigation .p-header__inner {
  display: grid;
  grid-template: "back" auto "title" auto "nav" auto/1fr;
  align-items: center;
  grid-row-gap: 0.9375rem;
  row-gap: 0.9375rem;
}
@media (min-width: 100em) {
  .p-header.--add-navigation .p-header__inner {
    grid-template: "back ." auto "title nav" auto/auto 1fr;
    -moz-column-gap: 1.875rem;
         column-gap: 1.875rem;
  }
}
.p-header.--add-navigation .p-header__nav {
  grid-area: nav;
  width: calc(100% + 40px);
  margin-left: -1.25rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-weight: 400;
  font-size: 0.875rem;
  font-family: var(--font-r);
  letter-spacing: 0.06em;
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 33.75em) {
  .p-header.--add-navigation .p-header__nav {
    width: calc(100% + 60px);
    margin-left: -1.875rem;
  }
}
@media (min-width: 48em) {
  .p-header.--add-navigation .p-header__nav {
    width: calc(100% + 80px);
    margin-left: -2.5rem;
  }
}
@media (min-width: 56.25em) {
  .p-header.--add-navigation .p-header__nav {
    width: calc(100% + 120px);
    margin-left: -3.75rem;
  }
}
@media (min-width: 80em) {
  .p-header.--add-navigation .p-header__nav {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    border-top: 0;
    border-bottom: 0;
  }
}
@media (min-width: 48em) {
  .p-header.--add-navigation .p-header__nav {
    color: #555;
  }
}
@media (min-width: 100em) {
  .p-header.--add-navigation .p-header__nav {
    justify-self: flex-end;
    margin-top: 0;
    margin-right: -1.75rem;
  }
}
.p-header.--add-navigation .p-header__nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1.4;
  row-gap: 0.75rem;
}
@media (min-width: 33.75em) {
  .p-header.--add-navigation .p-header__nav ul {
    margin-left: 0.5rem;
  }
}
@media (min-width: 48em) {
  .p-header.--add-navigation .p-header__nav ul {
    margin-left: 1rem;
    line-height: 1;
  }
}
@media (min-width: 56.25em) {
  .p-header.--add-navigation .p-header__nav ul {
    margin-left: 2.375rem;
  }
}
@media (min-width: 80em) {
  .p-header.--add-navigation .p-header__nav ul {
    margin-left: 2.125rem;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media (min-width: 100em) {
  .p-header.--add-navigation .p-header__nav ul {
    justify-content: flex-end;
    margin-right: 0.75rem;
    margin-left: 0;
  }
}
.p-header.--add-navigation .p-header__nav li {
  margin-top: 0;
}
.p-header.--add-navigation .p-header__nav a {
  padding: 0 1rem;
  text-align: center;
  text-decoration: none;
}
@media (min-width: 48em) {
  .p-header.--add-navigation .p-header__nav a {
    padding: 0 1.125rem;
  }
}
.p-header.--add-navigation .p-header__nav .c-btn {
  margin-top: 0;
  border-width: 0;
}
.p-header.--add-navigation .p-header__nav .c-btn i {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--theme-color);
  stroke-width: 2.2;
}
@media (min-width: 48em) {
  .p-header.--add-navigation .p-header__nav .c-btn i {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media (min-width: 80em) {
  .p-header.--add-navigation .p-header__nav .c-btn i {
    width: 1.375rem;
    height: 1.375rem;
  }
}

/* ==========================================================================
   Navigation amano-clinic
   ========================================================================== */
.p-header.--clinic {
  --theme-color: #739aff;
}
.p-header.--clinic .p-header__nav .p-header__list {
  margin-left: 0.375rem;
}
@media (min-width: 33.75em) {
  .p-header.--clinic .p-header__nav .p-header__list {
    margin-left: 1rem;
  }
}
@media (min-width: 48em) {
  .p-header.--clinic .p-header__nav .p-header__list {
    margin-left: 1.5rem;
  }
}
@media (min-width: 56.25em) {
  .p-header.--clinic .p-header__nav .p-header__list {
    margin-left: 2.75rem;
  }
}
@media (min-width: 80em) {
  .p-header.--clinic .p-header__nav .p-header__list {
    margin-left: 2.625rem;
  }
}
@media (min-width: 100em) {
  .p-header.--clinic .p-header__nav .p-header__list {
    justify-content: flex-end;
    margin-right: 0.75rem;
  }
}
.p-header.--clinic .p-header__link {
  position: relative;
}
.p-header.--clinic .p-header__item:not(:last-of-type) .p-header__link::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.0625rem;
  height: 75%;
  background-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-50%);
  content: "";
}
.p-header.--clinic .p-header__link.is-current {
  color: #739aff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* ==========================================================================
   Navigation no-bottom
   ========================================================================== */
.p-header.--no-bottom {
  padding-bottom: 0;
  border-bottom: 0;
}

/* ==========================================================================
   hero project
   ========================================================================== */
.p-hero {
  padding-bottom: 2.5rem;
}
@media (min-width: 48em) {
  .p-hero {
    padding-bottom: 3.125rem;
  }
}
@media (min-width: 80em) {
  .p-hero {
    padding-bottom: 3.75rem;
  }
}

.p-hero__media-wrapper {
  max-height: 80vh;
  padding: clamp(1.25rem, 4.7619047619vw, 5rem);
  border: 0.0625rem solid var(--color-black-alpha-100);
  border-radius: 0.9375rem;
}

.p-hero__media {
  display: block;
  overflow: hidden;
  position: relative;
  max-height: calc(80vh - 160px);
}
.p-hero__media:before {
  content: "";
  display: block;
  padding-top: 67.7419354839%;
}

.p-hero__image {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  border-radius: 0.3125rem;
}

.p-hero__heading {
  padding-left: 0;
  color: var(--color-neutral-mid);
  font-size: 1.25rem;
  font-family: var(--font-r);
  line-height: var(--lh-relaxed);
  letter-spacing: var(--ls-wide);
}
@media (min-width: 33.75em) {
  .p-hero__heading {
    font-size: 1.5625rem;
  }
}
@media (min-width: 48em) {
  .p-hero__heading {
    font-size: 1.875rem;
  }
}
@media (min-width: 80em) {
  .p-hero__heading {
    margin-top: 0;
    font-size: 2.1875rem;
    transform: translateY(-24%);
  }
}
.p-hero__heading::before {
  display: none;
}

.p-hero__textbox {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  line-height: var(--lh-loose);
}
@media (min-width: 33.75em) {
  .p-hero__textbox {
    font-size: 0.9375rem;
  }
}
@media (min-width: 48em) {
  .p-hero__textbox {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}
@media (min-width: 80em) {
  .p-hero__textbox {
    font-size: 1.0625rem;
  }
}

.p-hero__text {
  margin-top: 0;
  letter-spacing: var(--ls-wide);
}

.p-hero__text:nth-of-type(n+2) {
  margin-top: 1.875rem;
}

.p-hero__sub-media {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.875rem;
  gap: 1.875rem;
  width: 100%;
  margin-top: 1.875rem;
}
@media (min-width: 33.75em) {
  .p-hero__sub-media {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 48em) {
  .p-hero__sub-media {
    gap: 2.8125rem;
    margin-top: 2.8125rem;
  }
}
@media (min-width: 80em) {
  .p-hero__sub-media {
    gap: 3.75rem;
    margin-top: 3.75rem;
  }
}

/* ==========================================================================
   kv project
   ========================================================================== */
/* base */
.l-main .p-kv {
  margin-top: 3.75rem;
}
@media (min-width: 80em) {
  .l-main .p-kv {
    margin-top: 0;
  }
}

/* inner, media, image */
@media (min-width: 80em) {
  .p-kv__inner,
.p-kv__media,
.p-kv__image {
    z-index: 10;
    border-radius: 0 0 0 0.625rem;
  }
}

/* inner */
.p-kv__inner {
  position: relative;
  height: 30vh;
  overflow: hidden;
}
@media (min-width: 48em) {
  .p-kv__inner {
    height: 40vh;
  }
}
@media (min-width: 80em) {
  .p-kv__inner {
    height: 50vh;
  }
}
@media (min-width: 90em) {
  .p-kv__inner {
    height: 55vh;
  }
}
@media (min-width: 100em) {
  .p-kv__inner {
    height: 60vh;
  }
}

/* body */
.p-kv__body {
  position: absolute;
  top: 0;
  right: 0;
  z-index: var(--z-10);
  display: flex;
  width: 100%;
  height: 100%;
  padding: 2rem 2rem;
}
@media (min-width: 48em) {
  .p-kv__body {
    padding: 2.625rem 2.625rem;
  }
}
@media (min-width: 80em) {
  .p-kv__body {
    padding: 4.5rem 4rem;
  }
}
.p-kv__body.tl {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
.p-kv__body.tc {
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}
.p-kv__body.tr {
  align-items: flex-start;
  justify-content: flex-end;
  text-align: right;
}
.p-kv__body.l {
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}
.p-kv__body.c {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.p-kv__body.r {
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}
.p-kv__body.bl {
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
}
.p-kv__body.bc {
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}
.p-kv__body.br {
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
}

/* title */
.p-kv__title {
  width: -moz-max-content;
  width: max-content;
  margin-top: 0;
  color: var(--color-white);
}

/* link */
.p-kv__link {
  line-height: 1.4;
  text-decoration: none;
  transition: color 300ms var(--ease-out-cubic);
}

/* text wrapper */
.p-kv__text-wrapper {
  display: block;
  overflow: hidden;
  line-height: 1;
}
@media (min-width: 48em) {
  .p-kv__text-wrapper.--ja {
    margin-right: -0.375rem;
  }
}
@media (min-width: 48em) {
  .p-kv.--tight .p-kv__text-wrapper.--ja {
    margin-right: -0.375rem;
  }
}
.p-kv__text-wrapper.--en {
  margin-top: clamp(10px, 6px + 1vmin, 24px);
}

/* hover */
.p-kv__link:hover {
  color: rgba(255, 255, 255, 0.6);
  transition: color 300ms var(--ease-out-cubic);
}

/* common japanese english */
.p-kv__text {
  display: block;
  overflow: hidden;
  opacity: 1;
}
.p-kv__text span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 300ms var(--ease-out-cubic);
}
body.progress-complete .p-kv__text span {
  transform: translateY(0);
}

/* japanese */
.p-kv__text.--ja {
  font-size: clamp(32px, 25px + 2vw, 60px);
  font-family: var(--font-uc-r);
  letter-spacing: var(--ls-wide);
}
.p-kv__text.--ja .char:nth-child(1) {
  transition-delay: calc((1000 + (30 * 1)) * 1ms);
}
.p-kv__text.--ja .char:nth-child(2) {
  transition-delay: calc((1000 + (30 * 2)) * 1ms);
}
.p-kv__text.--ja .char:nth-child(3) {
  transition-delay: calc((1000 + (30 * 3)) * 1ms);
}
.p-kv__text.--ja .char:nth-child(4) {
  transition-delay: calc((1000 + (30 * 4)) * 1ms);
}
.p-kv__text.--ja .char:nth-child(5) {
  transition-delay: calc((1000 + (30 * 5)) * 1ms);
}
.p-kv__text.--ja .char:nth-child(6) {
  transition-delay: calc((1000 + (30 * 6)) * 1ms);
}
.p-kv__text.--ja .char:nth-child(7) {
  transition-delay: calc((1000 + (30 * 7)) * 1ms);
}
.p-kv__text.--ja .char:nth-child(8) {
  transition-delay: calc((1000 + (30 * 8)) * 1ms);
}
.p-kv__text.--ja .char:nth-child(9) {
  transition-delay: calc((1000 + (30 * 9)) * 1ms);
}
.p-kv__text.--ja .char:nth-child(10) {
  transition-delay: calc((1000 + (30 * 10)) * 1ms);
}
.p-kv__text.--ja .char:nth-child(11) {
  transition-delay: calc((1000 + (30 * 11)) * 1ms);
}
.p-kv__text.--ja .char:nth-child(12) {
  transition-delay: calc((1000 + (30 * 12)) * 1ms);
}
.p-kv__text.--ja .char:nth-child(13) {
  transition-delay: calc((1000 + (30 * 13)) * 1ms);
}
.p-kv__text.--ja .char:nth-child(14) {
  transition-delay: calc((1000 + (30 * 14)) * 1ms);
}
.p-kv__text.--ja .char:nth-child(15) {
  transition-delay: calc((1000 + (30 * 15)) * 1ms);
}
.p-kv__text.--ja .char:nth-child(16) {
  transition-delay: calc((1000 + (30 * 16)) * 1ms);
}
.p-kv__text.--ja .char:nth-child(17) {
  transition-delay: calc((1000 + (30 * 17)) * 1ms);
}
.p-kv__text.--ja .char:nth-child(18) {
  transition-delay: calc((1000 + (30 * 18)) * 1ms);
}
.p-kv__text.--ja .char:nth-child(19) {
  transition-delay: calc((1000 + (30 * 19)) * 1ms);
}
.p-kv__text.--ja .char:nth-child(20) {
  transition-delay: calc((1000 + (30 * 20)) * 1ms);
}

/* english */
.p-kv__text.--en {
  font-weight: 500;
  font-size: clamp(13px, 10px + 0.6vw, 20px);
  font-family: var(--font-en);
  letter-spacing: var(--ls-normal);
}
.p-kv__text.--en .char:nth-child(1) {
  transition-delay: calc((1000 + (20 * 1)) * 1ms);
}
.p-kv__text.--en .char:nth-child(2) {
  transition-delay: calc((1000 + (20 * 2)) * 1ms);
}
.p-kv__text.--en .char:nth-child(3) {
  transition-delay: calc((1000 + (20 * 3)) * 1ms);
}
.p-kv__text.--en .char:nth-child(4) {
  transition-delay: calc((1000 + (20 * 4)) * 1ms);
}
.p-kv__text.--en .char:nth-child(5) {
  transition-delay: calc((1000 + (20 * 5)) * 1ms);
}
.p-kv__text.--en .char:nth-child(6) {
  transition-delay: calc((1000 + (20 * 6)) * 1ms);
}
.p-kv__text.--en .char:nth-child(7) {
  transition-delay: calc((1000 + (20 * 7)) * 1ms);
}
.p-kv__text.--en .char:nth-child(8) {
  transition-delay: calc((1000 + (20 * 8)) * 1ms);
}
.p-kv__text.--en .char:nth-child(9) {
  transition-delay: calc((1000 + (20 * 9)) * 1ms);
}
.p-kv__text.--en .char:nth-child(10) {
  transition-delay: calc((1000 + (20 * 10)) * 1ms);
}
.p-kv__text.--en .char:nth-child(11) {
  transition-delay: calc((1000 + (20 * 11)) * 1ms);
}
.p-kv__text.--en .char:nth-child(12) {
  transition-delay: calc((1000 + (20 * 12)) * 1ms);
}
.p-kv__text.--en .char:nth-child(13) {
  transition-delay: calc((1000 + (20 * 13)) * 1ms);
}
.p-kv__text.--en .char:nth-child(14) {
  transition-delay: calc((1000 + (20 * 14)) * 1ms);
}
.p-kv__text.--en .char:nth-child(15) {
  transition-delay: calc((1000 + (20 * 15)) * 1ms);
}
.p-kv__text.--en .char:nth-child(16) {
  transition-delay: calc((1000 + (20 * 16)) * 1ms);
}
.p-kv__text.--en .char:nth-child(17) {
  transition-delay: calc((1000 + (20 * 17)) * 1ms);
}
.p-kv__text.--en .char:nth-child(18) {
  transition-delay: calc((1000 + (20 * 18)) * 1ms);
}
.p-kv__text.--en .char:nth-child(19) {
  transition-delay: calc((1000 + (20 * 19)) * 1ms);
}
.p-kv__text.--en .char:nth-child(20) {
  transition-delay: calc((1000 + (20 * 20)) * 1ms);
}

/* media */
.p-kv__media {
  height: inherit;
  overflow: hidden;
  opacity: 0;
  transition: opacity 500ms var(--ease-out-cubic) 800ms;
}
body.progress-complete .p-kv__media {
  opacity: 1;
}

/* image */
.p-kv__image {
  position: absolute;
  height: 100%;
  font-family: "object-fit:cover";
  -o-object-fit: cover;
     object-fit: cover;
}

/* tight modifier */
.p-kv.--tight .p-kv__inner {
  height: 7.5rem;
}
@media (min-width: 48em) {
  .p-kv.--tight .p-kv__inner {
    height: 8.75rem;
  }
}
@media (min-width: 80em) {
  .p-kv.--tight .p-kv__inner {
    height: 11.25rem;
  }
}
@media (min-width: 90em) {
  .p-kv.--tight .p-kv__inner {
    height: 12.5rem;
  }
}
.p-kv.--tight .p-kv__body {
  padding: 1.5rem 2rem;
}
@media (min-width: 48em) {
  .p-kv.--tight .p-kv__body {
    padding: 2rem 2.625rem;
  }
}
@media (min-width: 80em) {
  .p-kv.--tight .p-kv__body {
    padding: 2.25rem 4rem;
  }
}
.p-kv.--tight .p-kv__text-wrapper.--en {
  margin-top: clamp(7px, 1vw, 12px);
}
.p-kv.--tight .p-kv__text.--ja {
  font-size: 1.375rem;
}
@media (min-width: 48em) {
  .p-kv.--tight .p-kv__text.--ja {
    font-size: 1.5625rem;
  }
}
@media (min-width: 80em) {
  .p-kv.--tight .p-kv__text.--ja {
    font-size: 1.75rem;
  }
}
.p-kv.--tight .p-kv__text.--en {
  font-size: 0.75rem;
}
@media (min-width: 48em) {
  .p-kv.--tight .p-kv__text.--en {
    font-size: 0.8125rem;
  }
}
@media (min-width: 80em) {
  .p-kv.--tight .p-kv__text.--en {
    font-size: 0.875rem;
  }
}

/* rect modifier */
.p-kv.--rect .p-kv__inner {
  height: 9.375rem;
}
@media (min-width: 48em) {
  .p-kv.--rect .p-kv__inner {
    height: 11.25rem;
  }
}
@media (min-width: 80em) {
  .p-kv.--rect .p-kv__inner {
    height: 13.125rem;
  }
}
@media (min-width: 90em) {
  .p-kv.--rect .p-kv__inner {
    height: 15rem;
  }
}
.p-kv.--rect .p-kv__inner {
  overflow: hidden;
}
@media (min-width: 80em) {
  .p-kv.--rect .p-kv__inner {
    border-bottom-left-radius: 0.625rem;
  }
}
@media (min-width: 80em) {
  .p-kv.--rect .p-kv__media {
    border-bottom-left-radius: 0.625rem;
  }
}
@media (min-width: 80em) {
  .p-kv.--rect .p-kv__image {
    border-bottom-left-radius: 0.625rem;
  }
}
.p-kv.--rect .p-kv__title {
  color: var(--color-primary-mid);
}
.p-kv.--rect .p-kv__link {
  align-items: flex-start;
  align-self: center;
  margin-left: 0;
}
.p-kv.--rect .p-kv__link:hover {
  color: var(--theme-color);
}
.p-kv.--rect .p-kv__text.--ja {
  font-size: 1.25rem;
}
@media (min-width: 48em) {
  .p-kv.--rect .p-kv__text.--ja {
    font-size: 1.5625rem;
  }
}
@media (min-width: 80em) {
  .p-kv.--rect .p-kv__text.--ja {
    font-size: 1.875rem;
  }
}
.p-kv.--rect .p-kv__text.--en {
  font-weight: 400;
  font-size: 0.75rem;
}
@media (min-width: 48em) {
  .p-kv.--rect .p-kv__text.--en {
    font-size: 0.875rem;
  }
}
@media (min-width: 80em) {
  .p-kv.--rect .p-kv__text.--en {
    font-size: 1rem;
  }
}

/* ==========================================================================
   p-kv2 project
   ========================================================================== */
.p-kv2__grid,
.p-kv2__grid.two {
  display: grid;
  grid-template: "pickup pickup" auto ". . " auto/1fr 1fr;
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
@media (min-width: 48em) {
  .p-kv2__grid,
.p-kv2__grid.two {
    gap: 1.25rem;
  }
}
@media (min-width: 80em) {
  .p-kv2__grid,
.p-kv2__grid.two {
    gap: 1.875rem;
  }
}
.p-kv2.three .p-kv2__grid,
.p-kv2.three .p-kv2__grid.two {
  display: grid;
  grid-template: "pickup pickup pickup" auto ". . ." auto ". . ." auto/1fr 1fr 1fr;
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
@media (min-width: 48em) {
  .p-kv2.three .p-kv2__grid,
.p-kv2.three .p-kv2__grid.two {
    gap: 1.25rem;
  }
}
@media (min-width: 80em) {
  .p-kv2.three .p-kv2__grid,
.p-kv2.three .p-kv2__grid.two {
    gap: 1.875rem;
  }
}

.p-kv2__pickup-media {
  position: relative;
  grid-area: pickup;
}

.p-kv2__pickup-media-inner {
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.p-kv2__wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  padding-block: 3vw;
}
.p-kv2.tl .p-kv2__wrapper {
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-2.1vw);
}
.p-kv2.tc .p-kv2__wrapper {
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}
.p-kv2.tr .p-kv2__wrapper {
  align-items: flex-start;
  justify-content: flex-end;
  text-align: right;
  transform: translateX(4vw);
}
.p-kv2.l .p-kv2__wrapper {
  align-items: center;
  justify-content: flex-start;
  transform: translateX(-2.1vw);
}
.p-kv2.c .p-kv2__wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.p-kv2.r .p-kv2__wrapper {
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  transform: translateX(4vw);
}
.p-kv2.bl .p-kv2__wrapper {
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(-2.1vw);
}
.p-kv2.bc .p-kv2__wrapper {
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}
.p-kv2.br .p-kv2__wrapper {
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
  transform: translateX(4vw);
}

.p-kv2__heading {
  margin-top: 0;
  padding-left: 0;
  font-weight: 400;
  font-size: clamp(18px, 11px + 2.5vw, 60px);
  font-family: var(--font-uc-r);
  line-height: 1.5555555556;
  letter-spacing: 0.06em;
}
.p-kv2__heading::before {
  display: none;
}

.p-kv2__image {
  border-radius: 0.3125rem;
}

.p-kv2__feature {
  width: calc(100% - 10px);
  max-width: 62.5rem;
  margin-inline: auto;
}
@media (min-width: 33.75em) {
  .p-kv2__feature {
    width: calc(100% - 45px);
  }
}
@media (min-width: 48em) {
  .p-kv2__feature {
    width: calc(100% - 80px);
  }
}
@media (min-width: 56.25em) {
  .p-kv2__feature {
    width: calc(100% - 110px);
  }
}
@media (min-width: 80em) {
  .p-kv2__feature {
    width: calc(100% - 140px);
  }
}
.p-kv2__feature ul {
  margin-top: 0;
  margin-left: 0;
  padding: 1.25rem 0 0;
  list-style-type: none;
}
@media (min-width: 48em) {
  .p-kv2__feature ul {
    padding: 2.25rem 0 0;
  }
}
@media (min-width: 80em) {
  .p-kv2__feature ul {
    padding: 3rem 0 0;
  }
}
.p-kv2__feature ul li + li {
  margin-top: 1.875rem;
}
@media (min-width: 48em) {
  .p-kv2__feature ul li + li {
    margin-top: 2.5rem;
  }
}
@media (min-width: 80em) {
  .p-kv2__feature ul li + li {
    margin-top: 3.125rem;
  }
}
.p-kv2__feature ul li:first-child &gt; h3 {
  padding: 1.25rem 0 0;
}
@media (min-width: 48em) {
  .p-kv2__feature ul li:first-child &gt; h3 {
    padding: 0.875rem 0 0;
  }
}
@media (min-width: 80em) {
  .p-kv2__feature ul li:first-child &gt; h3 {
    padding: 0.75rem 0 0;
  }
}
.p-kv2__feature ul h3 {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  margin-top: 0;
  margin-left: 0;
  padding-left: 0;
  color: var(--theme-color);
  font-size: 1rem;
  line-height: 1.3043478261;
  letter-spacing: 0.03em;
}
@media (min-width: 33.75em) {
  .p-kv2__feature ul h3 {
    font-size: 1.125rem;
  }
}
@media (min-width: 48em) {
  .p-kv2__feature ul h3 {
    gap: 0.9375rem;
    font-size: 1.25rem;
  }
}
@media (min-width: 80em) {
  .p-kv2__feature ul h3 {
    font-size: 1.4375rem;
  }
}
.p-kv2__feature ul h3::before {
  display: none;
}
.p-kv2__feature ul p {
  line-height: 2.0588235294;
}
.p-kv2__feature ul i {
  stroke-width: 1.6;
}

/* ==========================================================================
   Lead component
   ========================================================================== */
.p-lead__image {
  position: relative;
  float: right;
  width: 100px;
  margin-left: 1.2em;
  shape-margin: 1.2em;
}
@media (min-width: 33.75em) {
  .p-lead__image {
    width: 120px;
    margin-left: 2em;
    shape-margin: 2em;
  }
}
@media (min-width: 48em) {
  .p-lead__image {
    width: 160px;
    margin-left: 3em;
    shape-margin: 3em;
  }
}
@media (min-width: 90em) {
  .p-lead__image {
    width: 200px;
    margin-left: 4em;
    shape-margin: 4em;
  }
}

/* ==========================================================================
Panel project
========================================================================== */
.p-panels {
  display: grid;
  grid-row-gap: 20px;
  row-gap: 20px;
  counter-reset: panel-counter;
}

.p-panels p {
  margin-top: 0;
}

.p-panels &gt; li {
  counter-increment: panel-counter;
}

/* ==========================================================================
   scroll-top project
   ========================================================================== */
.p-scroll-top {
  position: fixed;
  right: 0.9375rem;
  bottom: 0.9375rem;
  z-index: var(--z-20);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  background-color: #fff;
  border-radius: 1.375rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  transition: opacity 300ms var(--ease-in-cubic), visibility 300ms var(--ease-in-cubic);
}
@media (min-width: 33.75em) {
  .p-scroll-top {
    right: 1.25rem;
    bottom: 1.25rem;
  }
}
@media (min-width: 48em) {
  .p-scroll-top {
    right: 1.5625rem;
    bottom: 1.5625rem;
  }
}
@media (min-width: 80em) {
  .p-scroll-top {
    right: 2.5rem;
    bottom: 2rem;
  }
}
.p-scroll-top.is-show {
  visibility: visible;
  opacity: 1;
  transition-timing-function: var(--ease-out-cubic);
}

/* inner */
.p-scroll-top__inner {
  position: relative;
}

/* icon */
.p-scroll-top__icon {
  width: auto;
  height: auto;
  stroke-width: 0.0625rem;
  color: #555;
  transform: translateY(-1px);
  transition: transform 300ms var(--ease-out-cubic);
}
.p-scroll-top.is-show:hover .p-scroll-top__icon {
  transform: translateY(-5px);
}

/* tooltip */
.p-scroll-top__tooltip {
  display: none;
}
@media (min-width: 80em) {
  .p-scroll-top__tooltip {
    position: absolute;
    top: -5.375rem;
    left: 50%;
    display: block;
    width: 6.25rem;
    width: -moz-max-content;
    width: max-content;
    padding: 0.75rem 1.25rem;
    color: #555;
    font-size: 0.75rem;
    line-height: 1.6;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0.75rem;
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    transition: opacity 300ms var(--ease-out-cubic), visibility 300ms var(--ease-out-cubic);
  }
  .p-scroll-top__tooltip::after {
    height: 0;
    width: 0;
    border-bottom-width: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(255, 255, 255, 0.9);
    position: absolute;
    bottom: -0.3125rem;
    left: 50%;
    transform: translateX(-50%);
    content: "";
  }
  .p-scroll-top:hover .p-scroll-top__tooltip {
    visibility: visible;
    opacity: 1;
  }
}

/* ==========================================================================
   Home-business project
   ========================================================================== */
/* base */
.p-home-business {
  margin-top: 6.5rem;
}
@media (min-width: 48em) {
  .p-home-business {
    margin-top: 7.5rem;
  }
}
@media (min-width: 80em) {
  .p-home-business {
    margin-top: 12.1875rem;
  }
}

.p-home-business__head {
  padding-inline: 1.25rem;
}
@media (min-width: 48em) {
  .p-home-business__head {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 56.25em) {
  .p-home-business__head {
    padding-inline: 3.75rem;
  }
}
@media (min-width: 80em) {
  .p-home-business__head {
    margin-left: 12.5rem;
    padding-right: 5rem;
    padding-left: 2.5rem;
  }
}

/* header */
.p-home-business__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-home-business__header .p-home__title-wrapper {
  z-index: 20;
  padding-left: 0;
}
.p-home-business__header .c-btn {
  margin-top: 0;
}

/* body */
.p-home-business__body {
  margin-top: 1.25rem;
}
@media (min-width: 80em) {
  .p-home-business__body {
    margin-top: 2.5rem;
  }
}
@media (min-width: 90em) {
  .p-home-business__body {
    margin-top: 3.125rem;
  }
}

/* list */
.p-home-business__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  margin-top: 0;
  margin-left: 0;
  content: "";
  counter-reset: count;
}
@media (min-width: 48em) {
  .p-home-business__list {
    gap: 7.5rem;
  }
}

/* counter reference position */
.p-home-business__list h3 {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
}

/* counter layout */
.p-home-business__list h3::after {
  position: absolute;
  top: 50%;
  left: 0;
  margin-left: -0.5em;
  color: rgba(0, 0, 0, 0.15);
  font-weight: 300;
  font-size: 0.63em;
  font-family: var(--font-en);
  letter-spacing: var(--ls-normal);
  transform: translateY(-50%);
  content: counter(count, decimal-leading-zero);
  counter-increment: count;
}
@media (min-width: 80em) {
  .p-home-business__list h3::after {
    margin-left: -1em;
  }
}

/* item */
.p-home-business__item {
  position: relative;
  display: grid;
  grid-template: ".    .     image  image" 60vw ". content content   .  " auto/3.75rem 15vw minmax(0, 1fr) 1.25rem;
}
.p-home-business__item:nth-of-type(1) {
  --theme-color: #739aff;
}
.p-home-business__item:nth-of-type(2) {
  --theme-color: #f9a11e;
}
.p-home-business__item:nth-of-type(3) {
  --theme-color: #6fc600;
}
.p-home-business__item:nth-of-type(4) {
  --theme-color: #4bc2ba;
}
.p-home-business__item:nth-of-type(5) {
  --theme-color: #ff8095;
}

/* even item layout */
@media (min-width: 33.75em) {
  .p-home-business__item:nth-of-type(even) {
    grid-template-columns: 3.75rem 6.25rem minmax(0, 1fr) 1.25rem;
  }
}
@media (min-width: 48em) {
  .p-home-business__item:nth-of-type(even) {
    grid-template: "content image" 60vw/0.52fr minmax(0, 0.48fr);
  }
}
@media (min-width: 56.25em) {
  .p-home-business__item:nth-of-type(even) {
    grid-template: "content image" 52vw/0.52fr minmax(0, 0.48fr);
  }
}
@media (min-width: 80em) {
  .p-home-business__item:nth-of-type(even) {
    grid-template: ". content image" 44vw/12.5rem 0.48fr minmax(0, 0.52fr);
  }
}
@media (min-width: 90em) {
  .p-home-business__item:nth-of-type(even) {
    grid-template: ". content image" 44vw/12.5rem 0.48fr minmax(0, 0.52fr);
  }
}
@media (min-width: 100em) {
  .p-home-business__item:nth-of-type(even) {
    grid-template: ". content image" 46vw/12.5rem 0.4fr minmax(0, 0.6fr);
  }
}

/* odd item layout */
@media (min-width: 48em) {
  .p-home-business__item:nth-of-type(odd) {
    grid-template: "image content" 55vw/minmax(0, 0.47fr) 0.53fr;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
@media (min-width: 56.25em) {
  .p-home-business__item:nth-of-type(odd) {
    grid-template: "image content" 48vw/minmax(0, 0.54fr) 0.46fr;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}
@media (min-width: 80em) {
  .p-home-business__item:nth-of-type(odd) {
    grid-template: "image content" 42vw/minmax(0, 0.6fr) 0.4fr;
  }
}
@media (min-width: 90em) {
  .p-home-business__item:nth-of-type(odd) {
    grid-template: "image content" 42vw/minmax(0, 0.6fr) 0.4fr;
  }
}
@media (min-width: 100em) {
  .p-home-business__item:nth-of-type(odd) {
    grid-template: "image content" 42vw/minmax(0, 0.6fr) 0.4fr;
  }
}

/* media layout */
.p-home-business__media {
  position: relative;
  grid-area: image;
  grid-row: 1/2;
  overflow: hidden;
}

/* uk-parallax */
.p-home-business__uk-parallax {
  width: 100%;
  height: 100%;
}

.p-home-business__image {
  position: absolute;
  bottom: 0;
  width: 135%;
  height: 117%;
  font-family: "object-fit:cover";
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 48em) {
  .p-home-business__image {
    width: 130%;
    height: 115%;
  }
}
@media (min-width: 80em) {
  .p-home-business__image {
    width: 125%;
    height: 110%;
  }
}

/* svg mask medical */
.p-home-business__item:nth-of-type(1) .p-home-business__media {
  -webkit-clip-path: url("#medical-svg-mask-mobile");
          clip-path: url("#medical-svg-mask-mobile");
}
@media (min-width: 48em) {
  .p-home-business__item:nth-of-type(1) .p-home-business__media {
    -webkit-clip-path: url("#medical-svg-mask-tablet");
            clip-path: url("#medical-svg-mask-tablet");
  }
}
@media (min-width: 80em) {
  .p-home-business__item:nth-of-type(1) .p-home-business__media {
    width: calc(100% - 60px);
    margin-left: 3.75rem;
    -webkit-clip-path: url("#medical-svg-mask-desktop");
            clip-path: url("#medical-svg-mask-desktop");
  }
}

/* svg mask care-medical */
.p-home-business__item:nth-of-type(2) .p-home-business__media {
  -webkit-clip-path: url("#care-medical-svg-mask-mobile");
          clip-path: url("#care-medical-svg-mask-mobile");
}
@media (min-width: 48em) {
  .p-home-business__item:nth-of-type(2) .p-home-business__media {
    -webkit-clip-path: url("#care-medical-svg-mask-tablet");
            clip-path: url("#care-medical-svg-mask-tablet");
  }
}

/* svg mask handicap-person */
.p-home-business__item:nth-of-type(3) .p-home-business__media {
  -webkit-clip-path: url("#handicap-person-svg-mask-mobile");
          clip-path: url("#handicap-person-svg-mask-mobile");
}
@media (min-width: 48em) {
  .p-home-business__item:nth-of-type(3) .p-home-business__media {
    -webkit-clip-path: url("#handicap-person-svg-mask-tablet");
            clip-path: url("#handicap-person-svg-mask-tablet");
  }
}
@media (min-width: 80em) {
  .p-home-business__item:nth-of-type(3) .p-home-business__media {
    width: calc(100% - 60px);
    margin-left: 3.75rem;
    -webkit-clip-path: url("#handicap-person-svg-mask-desktop");
            clip-path: url("#handicap-person-svg-mask-desktop");
  }
}

/* svg mask senior-housing */
.p-home-business__item:nth-of-type(4) .p-home-business__media {
  -webkit-clip-path: url("#senior-housing-svg-mask-mobile");
          clip-path: url("#senior-housing-svg-mask-mobile");
}
@media (min-width: 48em) {
  .p-home-business__item:nth-of-type(4) .p-home-business__media {
    -webkit-clip-path: url("#senior-housing-svg-mask-tablet");
            clip-path: url("#senior-housing-svg-mask-tablet");
  }
}

/* svg mask childcare */
.p-home-business__item:nth-of-type(5) .p-home-business__media {
  -webkit-clip-path: url("#childcare-svg-mask-mobile");
          clip-path: url("#childcare-svg-mask-mobile");
}
@media (min-width: 48em) {
  .p-home-business__item:nth-of-type(5) .p-home-business__media {
    -webkit-clip-path: url("#childcare-svg-mask-tablet");
            clip-path: url("#childcare-svg-mask-tablet");
  }
}
@media (min-width: 80em) {
  .p-home-business__item:nth-of-type(5) .p-home-business__media {
    width: calc(100% - 60px);
    margin-left: 3.75rem;
    -webkit-clip-path: url("#childcare-svg-mask-desktop");
            clip-path: url("#childcare-svg-mask-desktop");
  }
}

/* content */
.p-home-business__content {
  grid-area: content;
  grid-row: 2/3;
  align-self: flex-start;
  margin-top: -1.25rem;
}
@media (min-width: 48em) {
  .p-home-business__content {
    grid-area: content;
    align-self: center;
    margin-top: 0;
  }
}

/* odd content */
@media (min-width: 48em) {
  .p-home-business__item:nth-of-type(odd) .p-home-business__content {
    width: 100%;
  }
}

/* even content */
@media (min-width: 48em) {
  .p-home-business__item:nth-of-type(even) .p-home-business__content {
    width: 100%;
  }
}

/* pictogram */
.p-home-business__picto {
  max-width: 20rem;
  color: var(--color-gray);
}
.p-home-business__picto .c-picto__header i {
  width: 4.375rem;
  height: 4.375rem;
}
@media (min-width: 80em) {
  .p-home-business__picto .c-picto__header i {
    width: 6.25rem;
    height: 6.25rem;
  }
}

/* odd content */
@media (min-width: 48em) {
  .p-home-business__item:nth-of-type(odd) .p-home-business__picto {
    margin-inline: auto;
    max-width: 78%;
  }
}
@media (min-width: 56.25em) {
  .p-home-business__item:nth-of-type(odd) .p-home-business__picto {
    max-width: 78%;
  }
}
@media (min-width: 80em) {
  .p-home-business__item:nth-of-type(odd) .p-home-business__picto {
    max-width: 20.625rem;
  }
}
@media (min-width: 90em) {
  .p-home-business__item:nth-of-type(odd) .p-home-business__picto {
    max-width: 21.625rem;
  }
}
@media (min-width: 100em) {
  .p-home-business__item:nth-of-type(odd) .p-home-business__picto {
    max-width: 22rem;
  }
}

/* even content */
@media (min-width: 48em) {
  .p-home-business__item:nth-of-type(even) .p-home-business__picto {
    margin-inline: auto;
    max-width: 72%;
  }
}
@media (min-width: 56.25em) {
  .p-home-business__item:nth-of-type(even) .p-home-business__picto {
    max-width: 67%;
  }
}
@media (min-width: 80em) {
  .p-home-business__item:nth-of-type(even) .p-home-business__picto {
    max-width: 23.875rem;
  }
}
@media (min-width: 90em) {
  .p-home-business__item:nth-of-type(even) .p-home-business__picto {
    max-width: 25rem;
  }
}
@media (min-width: 100em) {
  .p-home-business__item:nth-of-type(even) .p-home-business__picto {
    max-width: 25rem;
  }
}

/* background 1 */
.p-home-business__item:nth-of-type(1) .p-home-business__bg--mobile {
  display: none;
}
@media (max-width: 47.99em) {
  .p-home-business__item:nth-of-type(1) .p-home-business__bg--mobile {
    position: absolute;
    display: block;
    width: 100%;
    transform: translateY(45%);
  }
}
@media (max-width: 33.74em) {
  .p-home-business__item:nth-of-type(1) .p-home-business__bg--mobile {
    transform: translateY(60%);
  }
}
.p-home-business__item:nth-of-type(1) .p-home-business__bg--mobile svg {
  width: 100%;
  height: 100%;
}
.p-home-business__item:nth-of-type(1) .p-home-business__bg--tablet {
  display: none;
}
@media (min-width: 48em) {
  .p-home-business__item:nth-of-type(1) .p-home-business__bg--tablet {
    position: absolute;
    display: block;
    width: 92%;
    height: 60vmin;
    transform: translateY(10%);
  }
}
@media (min-width: 80em) {
  .p-home-business__item:nth-of-type(1) .p-home-business__bg--tablet {
    height: auto;
    transform: translateY(16%);
  }
}
@media (min-width: 90em) {
  .p-home-business__item:nth-of-type(1) .p-home-business__bg--tablet {
    height: auto;
  }
}
.p-home-business__item:nth-of-type(1) .p-home-business__bg--tablet svg {
  width: 100%;
  height: 100%;
}

/* background 2 */
.p-home-business__item:nth-of-type(2) .p-home-business__bg--mobile {
  display: none;
}
@media (max-width: 47.99em) {
  .p-home-business__item:nth-of-type(2) .p-home-business__bg--mobile {
    position: absolute;
    bottom: -70%;
    display: block;
    width: 20%;
  }
}
@media (max-width: 33.74em) {
  .p-home-business__item:nth-of-type(2) .p-home-business__bg--mobile {
    bottom: -60%;
    width: 23%;
  }
}
.p-home-business__item:nth-of-type(2) .p-home-business__bg--mobile svg {
  width: 100%;
  height: 100%;
}
.p-home-business__item:nth-of-type(2) .p-home-business__bg--tablet {
  display: none;
}
@media (min-width: 48em) {
  .p-home-business__item:nth-of-type(2) .p-home-business__bg--tablet {
    position: absolute;
    bottom: -15%;
    left: 52%;
    display: block;
    width: 12%;
  }
}
@media (min-width: 80em) {
  .p-home-business__item:nth-of-type(2) .p-home-business__bg--tablet {
    left: 52%;
    width: 12%;
  }
}
.p-home-business__item:nth-of-type(2) .p-home-business__bg--tablet svg {
  width: 100%;
  height: 100%;
}

/* background 3 */
.p-home-business__item:nth-of-type(3) .p-home-business__bg--mobile {
  display: none;
}
@media (max-width: 47.99em) {
  .p-home-business__item:nth-of-type(3) .p-home-business__bg--mobile {
    position: absolute;
    top: 88%;
    left: 0;
    display: block;
    width: 100%;
  }
}
.p-home-business__item:nth-of-type(3) .p-home-business__bg--mobile svg {
  width: 100%;
  height: 100%;
}
.p-home-business__item:nth-of-type(3) .p-home-business__bg--tablet {
  display: none;
}
@media (min-width: 48em) {
  .p-home-business__item:nth-of-type(3) .p-home-business__bg--tablet {
    position: absolute;
    top: 36%;
    right: 0;
    display: block;
    width: 84%;
  }
}
.p-home-business__item:nth-of-type(3) .p-home-business__bg--tablet svg {
  width: 100%;
  height: 100%;
}

/* background 4 */
.p-home-business__item:nth-of-type(4) .p-home-business__bg--mobile {
  display: none;
}
@media (max-width: 47.99em) {
  .p-home-business__item:nth-of-type(4) .p-home-business__bg--mobile {
    position: absolute;
    bottom: -110%;
    left: 0;
    display: block;
    width: 32%;
  }
}
.p-home-business__item:nth-of-type(4) .p-home-business__bg--mobile svg {
  width: 100%;
  height: 100%;
}
.p-home-business__item:nth-of-type(4) .p-home-business__bg--tablet {
  display: none;
}
@media (min-width: 48em) {
  .p-home-business__item:nth-of-type(4) .p-home-business__bg--tablet {
    position: absolute;
    top: 90%;
    left: 40%;
    display: block;
    width: 12%;
  }
}
.p-home-business__item:nth-of-type(4) .p-home-business__bg--tablet svg {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Home-external project
   ========================================================================== */
/* base */
.p-home-external {
  margin-top: 7.5rem;
}
.p-home-external ul {
  margin-top: 0;
  margin-left: 0;
  list-style: none;
}
.p-home-external li + li {
  margin-top: 0;
}
.p-home-external a {
  text-decoration: none;
}
.p-home-external p {
  margin-top: 0;
}
@media (min-width: 48em) {
  .p-home-external {
    margin-top: 10rem;
  }
}
@media (min-width: 56.25em) {
  .p-home-external {
    margin-top: 12.5rem;
  }
}
@media (min-width: 80em) {
  .p-home-external {
    margin-top: 15rem;
  }
}
@media (min-width: 100em) {
  .p-home-external {
    margin-top: 17.5rem;
  }
}

/* inner */
.p-home-external__inner {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media (min-width: 48em) {
  .p-home-external__inner {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media (min-width: 56.25em) {
  .p-home-external__inner {
    padding-right: 3.75rem;
    padding-left: 3.75rem;
  }
}
@media (min-width: 80em) {
  .p-home-external__inner {
    padding-right: 0;
    padding-left: 12.5rem;
  }
}

/* body */
@media (min-width: 80em) {
  .p-home-external__body {
    padding: 2.5rem 5rem 3.125rem 2.5rem;
  }
}

/* list */
.p-home-external__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  grid-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  row-gap: 1.25rem;
}
@media (min-width: 33.75em) {
  .p-home-external__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 48em) {
  .p-home-external__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 56.25em) {
  .p-home-external__list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 80em) {
  .p-home-external__list {
    grid-template-columns: repeat(5, 1fr);
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }
}
@media (min-width: 90em) {
  .p-home-external__list {
    grid-template-columns: repeat(5, 1fr);
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}
@media (min-width: 100em) {
  .p-home-external__list {
    grid-template-columns: repeat(6, 1fr);
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }
}

/* item */
.p-home-external__item {
  border-radius: 0.625rem;
}

/* link */
.p-home-external__link {
  --transition-ease: cubic-bezier(0.33, 1, 0.68, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  font-size: 0.75rem;
  background-color: #fff;
  border-radius: 0.625rem;
  transition: color 300ms var(--transition-ease);
  font-feature-settings: "palt";
}
@media (min-width: 33.75em) {
  .p-home-external__link {
    font-size: 0.8125rem;
  }
}
.p-home-external__link::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: #012b2f;
  border-radius: 0.625rem;
  mix-blend-mode: screen;
  transition: background-color 300ms var(--transition-ease);
  content: "";
}
.p-home-external__link:hover::before {
  background-color: transparent;
}
.p-home-external__link:hover {
  transition: color 400ms var(--transition-ease);
}

/* image */
.p-home-external__image {
  border-radius: 0.625rem;
  filter: saturate(0);
  transition: filter 300ms var(--transition-ease);
}
@media (min-width: 48em) {
  .p-home-external__image {
    aspect-ratio: auto;
  }
}
.p-home-external__link:hover .p-home-external__image {
  filter: saturate(1);
}

/* textbox */
.p-home-external__textbox {
  padding: 0.9375rem 0.375rem;
  line-height: 1.5;
}
@media (min-width: 80em) {
  .p-home-external__textbox {
    padding: 0.9375rem 0.5rem;
  }
}

/* ==========================================================================
   Home-pickup project
   ========================================================================== */
@media (min-width: 80em) {
  .home main {
    padding-left: 0;
  }
}

/* title wrapper */
.p-home__title-wrapper {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
}
@media (min-width: 80em) {
  .p-home__title-wrapper {
    padding-left: 2.5rem;
  }
}
.p-home__title-wrapper .c-btn {
  margin-top: 0;
}
.p-home__title-wrapper .c-btn i {
  transform: translateX(0);
  transition: transform 200ms var(--ease-out-cubic);
}
.p-home__title-wrapper:hover .c-btn {
  color: #0a0;
}
.p-home__title-wrapper:hover .c-btn i {
  transform: translateX(6px);
}

/* title */
.p-home__title {
  padding-left: 0;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  margin-top: 0;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
}
.p-home__title::before {
  display: none;
}
.p-home__title + .c-btn i {
  stroke-width: 1.2;
}
@media (min-width: 80em) {
  .p-home__title + .c-btn i {
    stroke-width: 1.5;
  }
}
.p-home__title .ja {
  color: #999;
  font-weight: 400;
  font-size: clamp(22px, 16px + 0.8vw, 28px);
  font-family: var(--font-uc-r);
  letter-spacing: 0;
}
.p-home__title .en {
  display: flex;
  align-items: baseline;
  color: rgba(85, 85, 85, 0.5);
  font-weight: 400;
  font-size: clamp(13px, 10px + 0.3vw, 14px);
  font-family: var(--font-en);
  letter-spacing: 0;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
}
.p-home__title .en::before {
  width: clamp(25px, 2.5vw, 37px);
  height: 0.0625rem;
  background-color: rgba(0, 0, 0, 0.2);
  content: "";
}

/* ==========================================================================
   Home-information project
   ========================================================================== */
/* base */
.p-home-info {
  margin-top: 5.9375rem;
}
@media (min-width: 80em) {
  .p-home-info {
    margin-top: 7.5rem;
    margin-left: 12.5rem;
  }
}

/* inner */
.p-home-info__inner {
  width: 100%;
  padding-inline: 1.25rem;
}
@media (min-width: 48em) {
  .p-home-info__inner {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 56.25em) {
  .p-home-info__inner {
    padding-inline: 3.75rem;
  }
}
@media (min-width: 80em) {
  .p-home-info__inner {
    padding-right: 5rem;
    padding-left: 2.5rem;
  }
}

/* background */
.p-home-info__bg--mobile {
  z-index: -10;
}
@media (max-width: 47.99em) {
  .p-home-info__bg--mobile {
    position: absolute;
    transform: translate(-1.25rem, -15%);
  }
}
@media (min-width: 48em) {
  .p-home-info__bg--mobile {
    display: none;
  }
}
.p-home-info__bg--mobile [preserveAspectRatio] {
  width: 100%;
  height: 100%;
}

.p-home-info__bg--tablet {
  z-index: -10;
  display: none;
}
@media (min-width: 48em) {
  .p-home-info__bg--tablet {
    position: absolute;
    left: 24%;
    display: block;
    grid-area: contents;
    width: 45%;
    transform: translateY(-70%);
  }
  .p-home-info__bg--tablet img {
    height: auto;
  }
}
@media (min-width: 80em) {
  .p-home-info__bg--tablet {
    left: 40%;
    width: 30%;
    transform: translateY(-50%);
  }
}
.p-home-info__bg--tablet [preserveAspectRatio] {
  width: 100%;
  height: 100%;
}

/* head */
.p-home-info__head .p-home__title-wrapper {
  padding-left: 0;
}

/* body */
.p-home-info__body {
  margin-top: 0.9375rem;
}
@media (min-width: 33.75em) {
  .p-home-info__body {
    margin-top: 1.25rem;
  }
}
@media (min-width: 48em) {
  .p-home-info__body {
    margin-top: 1.875rem;
  }
}
@media (min-width: 56.25em) {
  .p-home-info__body {
    margin-top: 2.5rem;
  }
}
@media (min-width: 80em) {
  .p-home-info__body {
    margin-top: 3.125rem;
  }
}

/* list */
.p-home-info__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0;
  margin-left: 0;
  list-style: none;
}
@media (min-width: 80em) {
  .p-home-info__list {
    gap: 0.9375rem;
  }
}

/* item */
.p-home-info__item {
  margin-top: 0;
}
.p-home-info__item &gt; a {
  text-decoration: none;
}

/* link */
.p-home-info__article {
  --toggle-switch-width: 1.25rem;
  position: relative;
  display: grid;
  grid-template-areas: "category category icon" "date date date" "title title title";
  grid-template-rows: repeat(3, auto);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  text-decoration: none;
  grid-column-gap: 0.9375rem;
  -moz-column-gap: 0.9375rem;
       column-gap: 0.9375rem;
  grid-row-gap: 0.3125rem;
  row-gap: 0.3125rem;
}
@media (min-width: 22.5em) {
  .p-home-info__article {
    grid-template-areas: "category date icon" "title title title";
    grid-template-rows: repeat(2, auto);
  }
}
@media (min-width: 80em) {
  .p-home-info__article {
    grid-template-areas: "date category title icon";
    grid-template-rows: repeat(1, auto);
    grid-template-columns: auto minmax(auto, 160px) 1fr auto;
    -moz-column-gap: clamp(32px, 11.25vw + -112px, 50px);
         column-gap: clamp(32px, 11.25vw + -112px, 50px);
  }
}

.p-home-info__date {
  grid-area: date;
  color: var(--color-gray);
  font-size: 0.84375rem;
}
@media (min-width: 80em) {
  .p-home-info__date {
    font-size: 0.875rem;
  }
}

.p-home-info__category {
  position: relative;
  grid-area: category;
  padding-left: 1.6em;
  font-size: 0.84375rem;
}
@media (min-width: 80em) {
  .p-home-info__category {
    min-width: 11.875rem;
    font-size: 0.875rem;
  }
}
.p-home-info__category::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: var(--category-color, var(--color-primary-mid));
  border-radius: 50%;
  transform: translateY(calc((1lh - 1em) / 2));
  content: "";
}

.p-home-info__title {
  display: flex;
  grid-area: title;
  margin-top: 0;
  margin-left: 0;
  padding-left: 0;
  font-weight: 400;
  font-size: 0.84375rem;
  font-family: var(--font-r);
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  font-feature-settings: "palt";
}
@media (min-width: 48em) {
  .p-home-info__title {
    font-size: 0.875rem;
  }
}
.p-home-info__title::before {
  display: none;
}
.p-home-info__item a:hover .p-home-info__title {
  color: var(--color-primary-mid);
}
.p-home-info__article.category-important-info-new .p-home-info__title {
  color: var(--category-color);
}
.p-home-info__title i {
  transform: translateY(3px) scale(-1, 1);
}

.p-home-info__icon {
  grid-area: icon;
}
.p-home-info__item a:hover .p-home-info__icon .c-toggle-switch::before {
  transform: translateX(calc(200% - 5px));
}

/* ==========================================================================
   Home-kv project
   ========================================================================== */
/* mask */
.p-home-kv__mask {
  position: absolute;
  width: 0;
  height: 0;
}

/* first View */
.p-home-kv__copy &gt; span,
.p-home-kv__text &gt; span {
  display: block;
  color: transparent;
  transition: color 3500ms var(--ease-out-cubic);
  transition-delay: 750ms;
}
body.load .p-home-kv__copy &gt; span,
body.load .p-home-kv__text &gt; span {
  color: #fff;
}
@media (min-width: 80em) {
  body.load .p-home-kv__copy &gt; span,
body.load .p-home-kv__text &gt; span {
    color: #777;
  }
}

/* kv */
.p-home-kv {
  margin-top: 3.75rem;
}
@media (min-width: 80em) {
  .p-home-kv {
    margin-top: 0;
    padding-left: 12.5rem;
  }
}

/* inner */
.p-home-kv__inner {
  position: relative;
  height: calc(var(--inner-vh, 100vh) - 60px);
}
@media (min-width: 80em) {
  .p-home-kv__inner {
    height: 112vh;
  }
}
.p-home-kv__inner .kv__img {
  width: 100%;
  height: 100%;
  margin-left: auto;
}
@media (min-width: 80em) {
  .p-home-kv__inner .kv__img {
    width: 80%;
    -webkit-clip-path: url(#kv-svg-mask-desktop);
            clip-path: url(#kv-svg-mask-desktop);
  }
}
.p-home-kv__inner .img-reel {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.p-home-kv__inner .img-reel__item {
  position: absolute;
  width: calc(100% + 60px);
  height: 100%;
  opacity: 0;
  animation-duration: 7000ms;
  animation-fill-mode: forwards;
}
.p-home-kv__inner .img-reel__item.current {
  animation-name: show-image, show-translate-image;
  animation-timing-function: var(--ease-out-cubic), linear;
}
.p-home-kv__inner .img-reel__item.prev {
  animation-name: hide-image, hide-translate-image;
  animation-timing-function: var(--ease-out-cubic), linear;
}
.p-home-kv__inner .kv__img img {
  height: 100%;
  font-family: "object-fit:cover";
  -o-object-fit: cover;
     object-fit: cover;
}

.p-home-kv__body {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 90%;
  color: transparent;
  font-weight: 400;
  font-family: var(--font-uc-r);
  letter-spacing: 0.06em;
}
@media (min-width: 80em) {
  .p-home-kv__body {
    bottom: 22vh;
    left: 2.5rem;
    mix-blend-mode: multiply;
  }
}

.p-home-kv__copy {
  margin-top: 0;
  padding-left: 0;
  font-weight: 400;
  font-size: clamp(35px, 9.5vw, 50px);
  font-family: var(--font-uc-r);
  line-height: 1.3;
}
@media (min-width: 48em) {
  .p-home-kv__copy {
    font-size: clamp(50px, 5vw, 80px);
  }
}
.p-home-kv__copy::before {
  position: static;
  width: 0;
  height: 0;
}

.p-home-kv__text {
  width: 100%;
  margin-top: 1.875rem;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media (min-width: 33.75em) {
  .p-home-kv__text {
    font-size: 0.9375rem;
  }
}
@media (min-width: 48em) {
  .p-home-kv__text {
    font-size: clamp(16px, 1.13vw, 18px);
  }
}
@media (min-width: 80em) {
  .p-home-kv__text {
    width: 100%;
    margin-top: 2.25rem;
  }
}

/* ==========================================================================
   Home-pickup project
   ========================================================================== */
/* base */
.p-home-news {
  position: relative;
  margin-top: 7.5rem;
}
@media (min-width: 48em) {
  .p-home-news {
    margin-top: 9.375rem;
  }
}
@media (min-width: 80em) {
  .p-home-news {
    margin-top: 11.25rem;
  }
}

/* inner */
.p-home-news__inner {
  position: relative;
  z-index: 10;
}

/* head */
.p-home-news__head {
  padding-inline: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 33.75em) {
  .p-home-news__head {
    padding-inline: 1.875rem;
  }
}
@media (min-width: 48em) {
  .p-home-news__head {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 56.25em) {
  .p-home-news__head {
    padding-inline: 3.75rem;
  }
}
@media (min-width: 80em) {
  .p-home-news__head {
    padding-right: 5rem;
    padding-left: 12.5rem;
  }
}
.p-home-news__head .c-btn {
  margin-top: 0;
}

/* body */
.p-home-news__body {
  margin-top: 2.1875rem;
}
@media (min-width: 48em) {
  .p-home-news__body {
    margin-top: 2.5rem;
  }
}
@media (min-width: 80em) {
  .p-home-news__body {
    margin-top: 2.8125rem;
  }
}
@media (min-width: 100em) {
  .p-home-news__body {
    margin-top: 3.125rem;
  }
}

/* card */
.p-home-news__card {
  display: flex;
  flex-direction: column;
  letter-spacing: 0;
  text-decoration: none;
  /* media */
  /* body */
  /* title */
  /* footer */
}
.p-home-news__card:hover .card__media {
  filter: brightness(1.07);
}
.p-home-news__card:hover .card__media img {
  transform: scale(1.05);
}
.p-home-news__card:hover .card__title {
  color: var(--category-color, var(--color-primary-mid));
}
.p-home-news__card:hover .c-toggle-switch::before {
  transform: translateX(calc(200% - 5px));
}
.p-home-news__card .card__media {
  display: block;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: url("/assets/img/home/home_pickup_mask.svg");
          mask-image: url("/assets/img/home/home_pickup_mask.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  margin-inline: 2.5rem;
  overflow: hidden;
  transition: filter 400ms cubic-bezier(0.33, 1, 0.68, 1);
}
.p-home-news__card .card__media:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-home-news__card .card__media img {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  font-family: "object-fit:cover";
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 400ms cubic-bezier(0.33, 1, 0.68, 1);
}
.p-home-news__card .card__body {
  width: 100%;
  margin-top: 1.25rem;
}
.p-home-news__card .card__title {
  padding-left: 0;
  margin-top: 0;
  margin-left: 0;
  font-weight: 400;
  font-size: 0.9375rem;
  font-family: var(--font-r);
  line-height: 1.6666666667;
  transition: color 400ms cubic-bezier(0.33, 1, 0.68, 1);
}
.p-home-news__card .card__title::before {
  display: none;
}
.p-home-news__card .card__footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 4px;
  align-items: center;
  margin-top: 0.75rem;
}
.p-home-news__card .card__footer .tag {
  position: relative;
  flex-shrink: 0;
  padding-left: 1.5em;
  margin-right: 10px;
  font-size: 0.84375rem;
}
.p-home-news__card .card__footer .tag::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: var(--category-color, var(--color-primary-mid));
  border-radius: 50%;
  transform: translateY(calc((1lh - 1em) / 2));
  content: "";
}
.p-home-news__card .card__footer .wrapper {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.p-home-news__card .card__footer .time {
  flex-grow: 1;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.84375rem;
}
.p-home-news__card .card__footer .c-toggle-switch::before {
  background-color: var(--category-color, var(--color-primary-mid));
}

/* swiper-slide */
@media (min-width: 80em) {
  .swiper-slide.swiper-slide-visible {
    opacity: 1;
    transition: opacity 600ms cubic-bezier(0.33, 1, 0.68, 1);
  }
  .swiper-slide:not(.swiper-slide-visible), .swiper-slide.swiper-slide-prev {
    opacity: 0.2;
    transition: opacity 600ms cubic-bezier(0.33, 1, 0.68, 1);
  }
}
@media (min-width: 33.75em) {
  .swiper-slide:nth-child(even) {
    margin-top: 2.5rem;
  }
}

/* swiper-button */
.p-home-news__body .swiper-button-prev,
.p-home-news__body .swiper-button-next {
  --swiper-navigation-size: 3.125rem;
  width: 3.125rem;
  height: 3.125rem;
  background-color: #fff;
  border-radius: 45%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: stroke 400ms cubic-bezier(0.33, 1, 0.68, 1), background-color 400ms cubic-bezier(0.33, 1, 0.68, 1), transform 400ms cubic-bezier(0.33, 1, 0.68, 1);
  stroke: #000;
}
.p-home-news__body .swiper-button-prev svg,
.p-home-news__body .swiper-button-next svg {
  transition: transform 400ms cubic-bezier(0.33, 1, 0.68, 1);
}
.p-home-news__body .swiper-button-prev::after,
.p-home-news__body .swiper-button-next::after {
  display: none;
}
.p-home-news__body .swiper-button-prev:hover,
.p-home-news__body .swiper-button-next:hover {
  background-color: #00aa00;
  stroke: #fff;
}

/* swiper-button-prev */
.p-home-news__body .swiper-button-prev {
  left: 1.25rem;
}
@media (min-width: 48em) {
  .p-home-news__body .swiper-button-prev {
    left: 2.5rem;
  }
}
@media (min-width: 56.25em) {
  .p-home-news__body .swiper-button-prev {
    left: 3.75rem;
  }
}
@media (min-width: 80em) {
  .p-home-news__body .swiper-button-prev {
    left: 15rem;
  }
}
.p-home-news__body .swiper-button-prev::after {
  background-image: url("/assets/img/home/home_swiper-button_prev-arrow.svg");
}
.p-home-news__body .swiper-button-prev:hover svg {
  transform: translateX(-2px);
}

/* swiper-button-next */
.p-home-news__body .swiper-button-next {
  right: 1.25rem;
}
@media (min-width: 48em) {
  .p-home-news__body .swiper-button-next {
    right: 2.5rem;
  }
}
@media (min-width: 56.25em) {
  .p-home-news__body .swiper-button-next {
    right: 3.75rem;
  }
}
@media (min-width: 80em) {
  .p-home-news__body .swiper-button-next {
    right: 5rem;
  }
}
.p-home-news__body .swiper-button-next::after {
  background-image: url("/assets/img/home/home_swiper-button_next-arrow.svg");
}
.p-home-news__body .swiper-button-next:hover svg {
  transform: translateX(2px);
}

/* swiper off */
@media (max-width: 33.74em) {
  .swiper-wrapper {
    flex-direction: column !important;
    transform: translate3d(0, 0, 0) !important;
  }

  .swiper-slide {
    width: 100% !important;
  }
  .swiper-slide:nth-child(n+2) {
    margin-top: 3.75rem;
  }
  .swiper-slide:nth-child(n+4) {
    display: none;
  }

  .p-home-news__body {
    width: calc(100% - 110px);
    margin-right: auto;
    margin-left: auto;
  }
}
/* background mobile */
.p-home-news__bg--mobile {
  position: absolute;
  top: -4%;
  right: 0;
  content: "";
}
@media (min-width: 48em) {
  .p-home-news__bg--mobile {
    display: none;
  }
}
@media (min-width: 33.75em) {
  .p-home-news__bg--mobile svg {
    width: 20rem;
    height: auto;
  }
}

/* background tablet */
.p-home-news__bg--tablet {
  display: none;
}
@media (min-width: 48em) {
  .p-home-news__bg--tablet {
    position: absolute;
    top: -20%;
    left: 1.5%;
    display: block;
    content: "";
  }
}
@media (min-width: 56.25em) {
  .p-home-news__bg--tablet {
    top: -27%;
  }
}
@media (min-width: 80em) {
  .p-home-news__bg--tablet {
    top: -34%;
    left: 3%;
  }
}
@media (min-width: 48em) {
  .p-home-news__bg--tablet svg {
    width: 28.125rem;
  }
}
@media (min-width: 80em) {
  .p-home-news__bg--tablet svg {
    width: 35.4375rem;
  }
}

/* ==========================================================================
   Home-recruit project
   ========================================================================== */
/* base */
.p-home-recruit {
  position: relative;
  margin-top: 7.5rem;
}
@media (min-width: 48em) {
  .p-home-recruit {
    margin-top: 9.375rem;
  }
}
@media (min-width: 80em) {
  .p-home-recruit {
    margin-top: 11.25rem;
  }
}

/* inner */
.p-home-recruit__inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}
@media (min-width: 48em) {
  .p-home-recruit__inner {
    flex-direction: row;
    align-items: center;
    padding-left: 2.5rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}
@media (min-width: 56.25em) {
  .p-home-recruit__inner {
    padding-left: 3.75rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
}
@media (min-width: 80em) {
  .p-home-recruit__inner {
    padding-left: 12.5rem;
    -moz-column-gap: 4.5rem;
         column-gap: 4.5rem;
  }
}
@media (min-width: 90em) {
  .p-home-recruit__inner {
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
}
@media (min-width: 100em) {
  .p-home-recruit__inner {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}

/* body */
.p-home-recruit__body {
  flex-shrink: 0;
  width: 100%;
  padding-inline: 1.25rem;
}
@media (min-width: 33.75em) {
  .p-home-recruit__body {
    padding-inline: 1.875rem;
  }
}
@media (min-width: 48em) {
  .p-home-recruit__body {
    flex-basis: 38%;
    max-width: 20rem;
    padding-inline: 0;
  }
}
@media (min-width: 80em) {
  .p-home-recruit__body {
    max-width: 21.25rem;
    padding-right: 0;
    padding-left: 2.5rem;
  }
}
@media (min-width: 100em) {
  .p-home-recruit__body {
    max-width: 22.5rem;
    padding-left: 0;
    margin-inline: auto;
  }
}

/* media */
.p-home-recruit__media {
  margin-left: 1.25rem;
  -webkit-clip-path: url("#recruit-svg-mask");
          clip-path: url("#recruit-svg-mask");
}
@media (min-width: 48em) {
  .p-home-recruit__media {
    flex-basis: 62%;
    flex-grow: 1;
    margin-left: 0;
  }
}
@media (min-width: 100em) {
  .p-home-recruit__media {
    flex-grow: 0;
  }
}

/* title */
.p-home-recruit__title {
  padding-left: 0;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 1.25rem;
  color: #555;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0;
}
.p-home-recruit__title::before {
  display: none;
}
@media (min-width: 33.75em) {
  .p-home-recruit__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 48em) {
  .p-home-recruit__title {
    margin-top: 0;
    padding-bottom: 1.625rem;
    font-size: 1.625rem;
  }
}
@media (min-width: 56.25em) {
  .p-home-recruit__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 80em) {
  .p-home-recruit__title {
    padding-bottom: 2rem;
    font-size: 2rem;
  }
}
@media (min-width: 90em) {
  .p-home-recruit__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 100em) {
  .p-home-recruit__title {
    font-size: 2.5rem;
  }
}
.p-home-recruit__title::before {
  display: none;
}
.p-home-recruit__title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: rgba(0, 0, 0, 0.1);
  content: "";
}
.p-home-recruit__title a {
  text-decoration: none;
}

/* main */
.p-home-recruit__main {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
}
@media (min-width: 48em) {
  .p-home-recruit__main {
    margin-top: 1.625rem;
    font-size: 0.875rem;
  }
}
@media (min-width: 80em) {
  .p-home-recruit__main {
    margin-top: 2rem;
    font-size: 0.9375rem;
  }
}
.p-home-recruit__main p:first-child {
  margin-top: 0;
}

/* footer */
.p-home-recruit__footer {
  margin-top: 1.25rem;
}
@media (min-width: 48em) {
  .p-home-recruit__footer {
    margin-top: 1.625rem;
  }
}
@media (min-width: 80em) {
  .p-home-recruit__footer {
    margin-top: 2rem;
  }
}
.p-home-recruit__footer .c-toggle-btn {
  --theme-color: var(--color-primary-mid);
  --toggle-btn-width: 2.5rem;
  justify-content: space-between;
  width: 100%;
  font-size: 0.875rem;
}
@media (min-width: 48em) {
  .p-home-recruit__footer .c-toggle-btn {
    font-size: 0.9375rem;
  }
}
@media (min-width: 80em) {
  .p-home-recruit__footer .c-toggle-btn {
    font-size: 1rem;
  }
}

/* background moble */
.p-home-recruit__bg--mobile {
  position: absolute;
  top: -10%;
  left: 0;
  z-index: -10;
  width: 100%;
  content: "";
}
@media (min-width: 48em) {
  .p-home-recruit__bg--mobile {
    display: none;
  }
}
.p-home-recruit__bg--mobile svg {
  width: 100%;
  height: auto;
}

/* background tablet */
.p-home-recruit__bg--tablet {
  display: none;
}
@media (min-width: 48em) {
  .p-home-recruit__bg--tablet {
    position: absolute;
    top: -14.375rem;
    right: 0;
    z-index: -10;
    display: block;
    display: flex;
    justify-content: flex-end;
    content: "";
  }
}
.p-home-recruit__bg--tablet svg {
  width: 98vw;
  height: auto;
}
@media (min-width: 80em) {
  .p-home-recruit__bg--tablet svg {
    width: 85vw;
    height: auto;
  }
}
@media (min-width: 90em) {
  .p-home-recruit__bg--tablet svg {
    width: 87vw;
    height: auto;
  }
}
@media (min-width: 100em) {
  .p-home-recruit__bg--tablet svg {
    width: 89vw;
    height: auto;
  }
}

/* ==========================================================================
   Business project
   ========================================================================== */
/* contents */
.p-business__contents {
  width: calc(100% - 40px);
  max-width: 85rem;
  margin-top: 3.75rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 33.75em) {
  .p-business__contents {
    width: calc(100% - 80px);
  }
}
@media (min-width: 48em) {
  .p-business__contents {
    width: calc(100% - 120px);
  }
}
@media (min-width: 56.25em) {
  .p-business__contents {
    width: calc(100% - 160px);
  }
}
@media (min-width: 80em) {
  .p-business__contents {
    width: calc(100% - 120px);
    margin-top: 5rem;
  }
}

/* list */
.p-business__list {
  margin-top: 0;
  margin-left: 0;
  list-style: none;
}
.p-business__list li:nth-of-type(n+2) {
  margin-top: 5rem;
}
@media (min-width: 48em) {
  .p-business__list li:nth-of-type(n+2) {
    margin-top: 6.25rem;
  }
}
@media (min-width: 80em) {
  .p-business__list li:nth-of-type(n+2) {
    margin-top: 7.5rem;
  }
}

/* color setting */
.p-business__medical {
  --btn-hover-color: var(--color-medical);
  --title-hover-color: var(--color-medical);
}

.p-business__care-medical {
  --btn-hover-color: var(--color-care-medical);
  --title-hover-color: var(--color-care-medical);
}

.p-business__handicap-person {
  --btn-hover-color: var(--color-handicap-person);
  --title-hover-color: var(--color-handicap-person);
}

.p-business__senior-housing {
  --btn-hover-color: var(--color-senior-housing);
  --title-hover-color: var(--color-senior-housing);
}

.p-business__childcare {
  --btn-hover-color: var(--color-childcare);
  --title-hover-color: var(--color-childcare);
}

/* title */
.p-business__title {
  display: grid;
  grid-template: "icon    icon " auto "counter title" auto "line    line " auto/max-content max-content;
  align-items: baseline;
  justify-items: center;
  width: -moz-max-content;
  width: max-content;
  font-size: 0.9375rem;
  text-decoration: none;
  grid-column-gap: 0.625rem;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  transition-timing-function: var(--ease-in);
  transition-duration: 400ms;
  transition-property: color;
  grid-row-gap: 0.625rem;
  row-gap: 0.625rem;
  margin-inline: auto;
}
@media (min-width: 48em) {
  .p-business__title {
    font-size: 1rem;
  }
}
@media (min-width: 80em) {
  .p-business__title {
    grid-template: "icon counter line title" auto/max-content max-content max-content max-content;
    align-items: center;
    margin-left: 0;
    font-size: 1.0625rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
}
.p-business__title:hover {
  color: var(--title-hover-color);
  transition-timing-function: var(--ease-out);
}

/* line */
.p-business__line {
  grid-area: line;
  width: 3.125rem;
  height: 0.0625rem;
  background-color: var(--color-black-alpha-200);
  transition-timing-function: var(--ease-in);
  transition-duration: 400ms;
  transition-property: background-color;
}
@media (min-width: 80em) {
  .p-business__line {
    width: 0.0625rem;
    height: 4.375rem;
  }
}
.p-business__title:hover .p-business__line {
  background-color: var(--title-hover-color);
  transition-timing-function: var(--ease-out);
}

/* icon layout */
.p-business__icon {
  grid-area: icon;
  width: 3.75rem;
  height: 3.75rem;
  stroke-width: 2.7;
}
@media (min-width: 48em) {
  .p-business__icon {
    width: 4.0625rem;
    height: 4.0625rem;
  }
}
@media (min-width: 80em) {
  .p-business__icon {
    width: 4.375rem;
    height: 4.375rem;
    margin-left: -0.5rem;
  }
}

/* h2 */
.p-business__heading {
  grid-area: title;
  margin-top: 0;
  padding-left: 0;
  font-size: 1.25rem;
  letter-spacing: var(--ls-normal);
}
@media (min-width: 48em) {
  .p-business__heading {
    font-size: 1.5rem;
  }
}
@media (min-width: 80em) {
  .p-business__heading {
    font-size: 1.875rem;
  }
}
.p-business__heading::before {
  position: static;
  width: 0;
  height: 0;
}

/* number */
.p-business__number {
  grid-area: counter;
}
@media (min-width: 80em) {
  .p-business__number {
    padding-left: 1.25rem;
  }
}
.p-business__number::before {
  font-weight: 300;
  font-size: 1.125rem;
  font-family: var(--font-en);
  letter-spacing: var(--ls-normal);
  content: counter(list-item, decimal-leading-zero);
}
@media (min-width: 48em) {
  .p-business__number::before {
    font-size: 1.5rem;
  }
}
@media (min-width: 80em) {
  .p-business__number::before {
    font-weight: 400;
    font-size: 1.875rem;
  }
}

/* paragraph */
.p-business__text {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.875rem;
  font-size: 0.84375rem;
  line-height: var(--lh-relaxed);
  letter-spacing: var(--ls-normal);
  margin-inline: auto;
}
@media (min-width: 80em) {
  .p-business__text {
    width: 100%;
    margin-top: 2rem;
    font-size: 0.9375rem;
    line-height: var(--lh-extra-relaxed);
    letter-spacing: var(--ls-wide);
  }
}

/* card layout */
.p-business__cards {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2.125rem;
  gap: 2.125rem;
  margin-top: 3.125rem;
}
@media (min-width: 48em) {
  .p-business__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 90em) {
  .p-business__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-business__cards .c-card__title {
  font-size: 1rem;
  letter-spacing: 0.02em;
}
@media (min-width: 48em) {
  .p-business__cards .c-card__title {
    font-size: 1.0625rem;
  }
}</pre></body></html>