/* ==========================================================================
   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(> .c-card.-sm) {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 22.5em) {
  .p-cards:has(> .c-card.-sm) {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (min-width: 48em) {
  .p-cards:has(> .c-card.-sm) {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media (min-width: 56.25em) {
  .p-cards:has(> .c-card.-sm) {
    -moz-column-gap: 80px;
         column-gap: 80px;
  }
}

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

.p-external__inner {
  padding-top: var(--gap);
  padding-bottom: var(--gap);
  margin-top: -1.5rem;
  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);
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
    grid-column-gap: var(--gap);
    -moz-column-gap: var(--gap);
         column-gap: var(--gap);
    width: 100%;
    margin-right: 0;
  }
}

.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%;
  content: "";
  background-color: #012b2f;
  border-radius: 0.625rem;
  mix-blend-mode: screen;
  transition: background-color 300ms var(--transition-ease);
}
.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 div {
  padding: 0.9375rem 1.25rem;
  border-top: 0.0625rem solid var(--color-black-alpha-100);
}

.p-external__image {
  filter: saturate(0);
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
  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);
    content: "";
    background-color: #ebf4ef;
    border-radius: 1rem;
  }
  @supports (color: hsl(from green h s l / 30%)) {
    .p-external__bg {
      background-color: hsl(from var(--theme-color) calc(h - 2) calc(s - 58) calc(l + 56));
    }
  }
}

.p-external-list__bg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -10;
  width: calc(100% - 10px);
  max-width: 100rem;
  height: 15rem;
  background-color: #ebf4ef;
  border-radius: 1rem 0 0 1rem;
}
@supports (color: hsl(from green h s l / 30%)) {
  .p-external-list__bg {
    background-color: hsl(from var(--theme-color) calc(h - 2) calc(s - 58) calc(l + 56));
  }
}
@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;
  opacity: 0;
  transition: opacity 600ms var(--ease-out-cubic);
  transform: translate(-50%, -50%);
}
@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;
  grid-row-gap: 2.25rem;
  row-gap: 2.25rem;
  margin-top: 2.5rem;
  margin-left: 0;
  counter-reset: count;
}
.p-flows > li:not(:last-of-type) {
  position: relative;
}
.p-flows > li:not(:last-of-type)::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2.25rem;
  height: 2.25rem;
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzYiIGhlaWdodD0iMzciIHZpZXdCb3g9IjAgMCAzNiAzNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTI0LjIxIDE0LjE5OTdMMTggMjIuOTg5N0wxMS43OSAxNC4xOTk3IiBzdHJva2U9IiNDMUMxQjQiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
  transform: translate(-50%, 2.25rem);
}

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

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

/* link */
.p-footer__link {
  -moz-column-gap: 0.3125rem;
       column-gap: 0.3125rem;
  width: 100%;
  font-size: 0.84375rem;
}
@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%);
}

/* ==========================================================================
   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 {
    padding-bottom: 2.5rem;
    margin-top: 2.5rem;
    border-bottom: 0.0625rem solid var(--color-black-alpha-100);
  }
}
@media (min-width: 90em) {
  .l-main .p-header {
    padding-bottom: 3.75rem;
    margin-top: 3.75rem;
  }
}
@media (min-width: 100em) {
  .l-main .p-header {
    padding-bottom: 5rem;
    margin-top: 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;
  grid-row-gap: 1rem;
  row-gap: 1rem;
  align-items: center;
}
@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;
  -moz-column-gap: 0.3125rem;
       column-gap: 0.3125rem;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8125rem;
  text-decoration: none;
  letter-spacing: var(--ls-normal);
}
@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;
  grid-row-gap: 0.9375rem;
  row-gap: 0.9375rem;
  align-items: center;
}
@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);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  margin-left: -1.25rem;
  font-family: var(--font-r);
  font-size: 0.875rem;
  font-weight: 400;
  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;
  row-gap: 0.75rem;
  align-items: center;
  line-height: 1.4;
}
@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 {
    -moz-column-gap: 0;
         column-gap: 0;
    margin-left: 2.125rem;
  }
}
@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%;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-50%);
}
.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;
}

/* ==========================================================================
   Home-information project
   ========================================================================== */
/* base */
.p-info {
  margin-top: 0;
}

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

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

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

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

/* body */
.p-info__body {
  margin-top: 1.25rem;
}
@media (min-width: 48em) {
  .p-info__body {
    margin-top: 1.5625rem;
  }
}
@media (min-width: 80em) {
  .p-info__body {
    margin-top: 2.875rem;
  }
}

/* list */
.p-info__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
  margin-left: 0;
  list-style: none;
}

/* item */
.p-info__item {
  margin-top: 0;
  border-top: 0.0625rem solid var(--color-black-alpha-100);
}
.p-info__item > a {
  text-decoration: none;
}

/* link */
.p-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;
  grid-row-gap: 0.3125rem;
  row-gap: 0.3125rem;
  grid-column-gap: 0.9375rem;
  -moz-column-gap: 0.9375rem;
       column-gap: 0.9375rem;
  align-items: center;
  padding-block: 1rem;
  text-decoration: none;
}
@media (min-width: 22.5em) {
  .p-info__article {
    grid-template-areas: "category date icon" "title title title";
    grid-template-rows: repeat(2, auto);
  }
}
@media (min-width: 80em) {
  .p-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-info__date {
  grid-area: date;
  font-size: 0.84375rem;
  color: var(--color-gray);
}
@media (min-width: 80em) {
  .p-info__date {
    font-size: 0.875rem;
  }
}

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

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

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

.p-info__link::after {
  display: none;
}

.p-info__btn {
  color: #555;
}

/* ==========================================================================
   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;
}
@media (min-width: 48em) {
  .p-kv__body {
    padding: 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;
  transition: transform 300ms var(--ease-out-cubic);
  transform: translateY(100%);
}
body.progress-complete .p-kv__text span {
  transform: translateY(0);
}

/* japanese */
.p-kv__text.--ja {
  font-family: var(--font-uc-r);
  font-size: clamp(32px, 25px + 2vw, 60px);
  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-family: var(--font-en);
  font-size: clamp(13px, 10px + 0.6vw, 20px);
  font-weight: 500;
  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-size: 0.75rem;
  font-weight: 400;
}
@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;
  }
}

/* ==========================================================================
   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 > 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;
  visibility: hidden;
  background-color: #fff;
  border-radius: 1.375rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  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;
  transition: transform 300ms var(--ease-out-cubic);
  transform: translateY(-1px);
}
.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;
    font-size: 0.75rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
    visibility: hidden;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0.75rem;
    opacity: 0;
    transition: opacity 300ms var(--ease-out-cubic), visibility 300ms var(--ease-out-cubic);
    transform: translateX(-50%);
  }
  .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%;
    content: "";
    transform: translateX(-50%);
  }
  .p-scroll-top:hover .p-scroll-top__tooltip {
    visibility: visible;
    opacity: 1;
  }
}