@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and ( max-width: 768px ) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 500;
  line-height: 1.6;
  background: #F8F9FA;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

a:hover {
  opacity: 0.7;
}

:root {
  --header-height: 124px;
  --header-height-sp: 56px;
}

main {
  margin-top: var(--header-height);
}
@media screen and ( max-width: 768px ) {
  main {
    margin-top: var(--header-height-sp);
  }
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 95%;
}
@media screen and ( max-width: 768px ) {
  .inner {
    width: 90%;
  }
}

.modal {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100vh - var(--header-height));
  z-index: 101;
  overflow: auto;
}

.page-contents {
  padding: 95.68px 0 67px;
  overflow: hidden;
}
@media screen and ( max-width: 768px ) {
  .page-contents {
    padding: 45px 0;
  }
}

.page-child .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media screen and ( max-width: 768px ) {
  .page-child .inner {
    gap: 40px;
  }
}

.page-child.p_threeminutes .inner {
  gap: 0;
}

.pc-only {
  display: block;
}
@media screen and ( max-width: 768px ) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media screen and ( max-width: 768px ) {
  .sp-only {
    display: block !important;
  }
}

.js-fade-in-active::before, .js-fade-in-active::after {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
}

.js-fade-in-pseudo-visible::before, .js-fade-in-pseudo-visible::after {
  opacity: 1;
}

/* アニメーションの定義（変更なし） */
/* アニメーションの定義はそのまま */
@-webkit-keyframes ultimateFluffy {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    /* 横の動きを 2px → 6px に強化 */
    -webkit-transform: translate(6px, -3px);
            transform: translate(6px, -3px);
  }
  50% {
    /* 横の動きを -1px → -4px に変更 */
    -webkit-transform: translate(-4px, -6px);
            transform: translate(-4px, -6px);
  }
  75% {
    /* 横の動きを -3px → -8px に強化 */
    -webkit-transform: translate(-8px, -2px);
            transform: translate(-8px, -2px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes ultimateFluffy {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    /* 横の動きを 2px → 6px に強化 */
    -webkit-transform: translate(6px, -3px);
            transform: translate(6px, -3px);
  }
  50% {
    /* 横の動きを -1px → -4px に変更 */
    -webkit-transform: translate(-4px, -6px);
            transform: translate(-4px, -6px);
  }
  75% {
    /* 横の動きを -3px → -8px に強化 */
    -webkit-transform: translate(-8px, -2px);
            transform: translate(-8px, -2px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.floating-svg {
  overflow: visible !important;
  max-width: 100%;
}

/* 修正ポイント：path ではなく直下の g を指定する */
.floating-svg > g {
  -webkit-animation: ultimateFluffy 10s ease-in-out infinite;
          animation: ultimateFluffy 10s ease-in-out infinite;
}

/* グループごとに動きのタイミングをずらす */
.floating-svg > g:nth-child(even) {
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
}

.floating-svg > g:nth-child(3n) {
  -webkit-animation-duration: 11s;
          animation-duration: 11s;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}

.floating-svg {
  /* Safari（PC/スマホ）で filter: url(#id) を有効にするとSVGが非表示になるためコメントアウト */
  /* -webkit-filter: url(#wavy); */
  /* filter: url(#wavy); */
}

.title {
  margin-bottom: 40px;
}
@media screen and ( max-width: 768px ) {
  .title {
    margin-bottom: 30px;
  }
}
.title .c-page__sub-title {
  color: #1dd8a7;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 3.3px;
}
@media screen and ( max-width: 768px ) {
  .title .c-page__sub-title {
    font-size: 18px;
  }
}
.title h2 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  /* 61.6px */
  letter-spacing: 3.64px;
}
.title h2 span {
  font-size: 24px;
  letter-spacing: 3.12px;
}
@media screen and ( max-width: 768px ) {
  .title h2 span {
    font-size: 16px;
    letter-spacing: 2px;
  }
}
@media screen and ( max-width: 768px ) {
  .title h2 {
    font-size: 24px;
    letter-spacing: 2px;
    line-height: 140%;
  }
}
.title span {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  display: block;
  margin-top: 24px;
}
@media screen and ( max-width: 768px ) {
  .title span {
    font-size: 14px;
  }
}
.title .c-page__lead {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  max-width: 783px;
  margin-top: 24px;
}
@media screen and ( max-width: 768px ) {
  .title .c-page__lead {
    font-size: 14px;
  }
}

.page-header {
  background: #fff;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  padding: clamp(8px, 5.2336448598px + 0.0074766355 * 100vw, 16px) 0;
}

.page-header__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 345.35px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  overflow: hidden;
}
@media screen and ( max-width: 768px ) {
  .page-header__wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    padding-bottom: 0;
  }
}

.page-header__text h1 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: clamp(24px, 22.6168224299px + 0.0037383178 * 100vw, 28px);
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  /* 61.6px */
  letter-spacing: 3.64px;
  white-space: nowrap;
}
.page-header__text h1 small {
  font-size: clamp(18px, 15.9252336449px + 0.0056074766 * 100vw, 24px);
}
@media screen and ( max-width: 768px ) {
  .page-header__text h1 small {
    display: contents;
  }
}
@media screen and ( max-width: 768px ) {
  .page-header__text h1 {
    font-size: clamp(20px, 17.2336448598px + 0.0074766355 * 100vw, 28px);
    height: 133px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    white-space: wrap;
  }
}

.page-header__img {
  width: 511.98px;
  height: 100%;
}
@media screen and ( max-width: 768px ) {
  .page-header__img {
    width: 90%;
    top: 0;
    right: 0;
    margin: 0 auto 24px;
  }
}

.breadcrumbs {
  padding: 16px 0;
  background: #f1f1f1;
}
@media screen and ( max-width: 768px ) {
  .breadcrumbs {
    padding: 12px 0;
  }
}
.breadcrumbs ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and ( max-width: 768px ) {
  .breadcrumbs ul {
    gap: 6px;
  }
}
.breadcrumbs li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: #222;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and ( max-width: 768px ) {
  .breadcrumbs li {
    font-size: 12px;
    gap: 6px;
  }
}
.breadcrumbs li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.299994 8.48401L-5.72205e-06 7.89601L7.42799 4.24801L-5.72205e-06 0.600014L0.299994 1.35899e-05L8.85599 4.24801L0.299994 8.48401Z' fill='%23222222'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and ( max-width: 768px ) {
  .breadcrumbs li:not(:last-child)::after {
    width: 5px;
    height: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 3px;
  }
}
.breadcrumbs li a,
.breadcrumbs li span {
  color: #222;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
@media screen and ( max-width: 768px ) {
  .breadcrumbs li a,
  .breadcrumbs li span {
    font-size: 12px;
  }
}
.breadcrumbs li a:hover {
  color: #1dd8a7;
  opacity: 1;
}

.home .head {
  background: #fff;
}

.head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 32px;
  background: #f8f9fa;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and ( max-width: 768px ) {
  .head {
    padding: 4.69px 12px;
  }
}

.head-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.head-logo {
  width: 280px;
}
@media screen and ( max-width: 768px ) {
  .head-logo {
    width: 132px;
  }
}
.head-logo a {
  display: block;
}
.head-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.head-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media screen and ( max-width: 768px ) {
  .head-nav {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 16px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.head-nav-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.head-nav-btn a {
  border-radius: 30px;
  border: 1px solid #d2d2d2;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.8px;
  min-width: 120px;
  height: 47px;
  padding: 0 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media screen and ( max-width: 768px ) {
  .head-nav-btn a {
    min-width: 82.8px;
    height: 24.5px;
    color: #fff;
    font-family: "Zen Kaku Gothic New";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* 16.8px */
    letter-spacing: 0.6px;
    padding: 0;
  }
}
.head-nav-btn a:hover {
  opacity: 0.9;
}
.head-nav-btn .head-nav-btn__consultation a {
  background: #61b93f;
}
.head-nav-btn .head-nav-btn__property a {
  background: #2d3640;
}

.head-nav-humburger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  width: 40px;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}
@media screen and ( max-width: 768px ) {
  .head-nav-humburger {
    width: 24px;
    height: 17px;
    gap: 5.8px;
  }
}
.head-nav-humburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1a2b3c;
  border-radius: 1px;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.head-nav-humburger.is-active span:nth-child(1) {
  -webkit-transform: translateY(14px) rotate(45deg);
          transform: translateY(14px) rotate(45deg);
}
@media screen and ( max-width: 768px ) {
  .head-nav-humburger.is-active span:nth-child(1) {
    -webkit-transform: translateY(8.8px) rotate(45deg);
            transform: translateY(8.8px) rotate(45deg);
  }
}
.head-nav-humburger.is-active span:nth-child(2) {
  opacity: 0;
}
.head-nav-humburger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-14px) rotate(-45deg);
          transform: translateY(-14px) rotate(-45deg);
}
@media screen and ( max-width: 768px ) {
  .head-nav-humburger.is-active span:nth-child(3) {
    -webkit-transform: translateY(-6.8px) rotate(-45deg);
            transform: translateY(-6.8px) rotate(-45deg);
  }
}

.head-menu-contents {
  max-width: 1200px;
  margin: auto;
  max-width: 743px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  z-index: 1000;
  position: relative;
  max-height: 720px;
}
@media screen and ( max-width: 768px ) {
  .head-menu-contents {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 10px;
    max-height: auto;
    padding: 20px 0;
  }
}

.head-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.head-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.head-menu.is-open::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(29, 216, 167, 0.85)), to(rgba(69, 160, 21, 0.85)));
  background: -webkit-linear-gradient(top, rgba(29, 216, 167, 0.85) 0%, rgba(69, 160, 21, 0.85) 100%);
  background: linear-gradient(180deg, rgba(29, 216, 167, 0.85) 0%, rgba(69, 160, 21, 0.85) 100%);
}

.head-menu__nav {
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 23px;
  width: 100%;
}
@media screen and ( max-width: 768px ) {
  .head-menu__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: calc(100vh - 150px);
    overflow-y: auto;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.head-menu__nav-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
}
@media screen and ( max-width: 768px ) {
  .head-menu__nav-item {
    width: 100%;
  }
}
.head-menu__nav-item strong {
  color: #fff;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 3px;
  margin-bottom: 12px;
}
@media screen and ( max-width: 768px ) {
  .head-menu__nav-item strong {
    font-size: 18px;
  }
}
.head-menu__nav-item .head-menu__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
@media screen and ( max-width: 768px ) {
  .head-menu__nav-item .head-menu__list {
    margin: 0 0 20px;
  }
}

.head-menu__item a {
  display: block;
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  /* 28.8px */
  letter-spacing: 1.6px;
}
@media screen and ( max-width: 768px ) {
  .head-menu__item a {
    font-size: 14px;
  }
}

.head-menu__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.head-menu__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 24px;
  border-radius: 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.head-menu__btn:hover {
  opacity: 0.9;
}
.head-menu__btn--consultation {
  background: #61b93f;
}
.head-menu__btn--property {
  background: #2d3640;
}

.head-menu__tel {
  margin-bottom: 1.6rem;
}
.head-menu__tel strong {
  color: #fff;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 3px;
}
@media screen and ( max-width: 768px ) {
  .head-menu__tel strong {
    font-size: 16px;
  }
}
.head-menu__tel p {
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  /* 35.2px */
  letter-spacing: 2.08px;
}
@media screen and ( max-width: 768px ) {
  .head-menu__tel p {
    font-size: 14px;
  }
}
.head-menu__tel a {
  color: #fff;
  font-family: Inter;
  font-size: 52px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  /* 78px */
}
@media screen and ( max-width: 768px ) {
  .head-menu__tel a {
    font-size: 28px;
  }
}

.head-menu-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
}
@media screen and ( max-width: 768px ) {
  .head-menu-buttons {
    gap: 30px;
  }
}
.head-menu-buttons .head-menu-buttons__item strong {
  color: #fff;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 3px;
}
@media screen and ( max-width: 768px ) {
  .head-menu-buttons .head-menu-buttons__item strong {
    font-size: 16px;
  }
}
.head-menu-buttons .head-menu-buttons__item p {
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  /* 35.2px */
  letter-spacing: 2.08px;
}
@media screen and ( max-width: 768px ) {
  .head-menu-buttons .head-menu-buttons__item p {
    font-size: 14px;
  }
}
.head-menu-buttons .head-menu-buttons__item a {
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  /* 28.8px */
  letter-spacing: 0.8px;
  border-radius: 30px;
  width: 320px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 23px;
}
@media screen and ( max-width: 768px ) {
  .head-menu-buttons .head-menu-buttons__item a {
    width: 160px;
    height: 48px;
    font-size: 14px;
  }
}
.head-menu-buttons .head-menu-buttons__item .head-menu-buttons__item-consulting {
  background: #1dd8a7;
}
.head-menu-buttons .head-menu-buttons__item .head-menu-buttons__item-mail {
  background: #1a2b3c;
}

.footer-contact {
  background: #fff;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  padding: 66.82px 0 63.98px;
}
.footer-contact .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(239px, 16.5972222222vw);
}
@media screen and ( max-width: 1100px ) {
  .footer-contact .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.footer-contact .title {
  width: 190px;
  white-space: nowrap;
}

.footer-content__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer-content__text span {
  color: #1dd8a7;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  display: block;
  letter-spacing: 2.2px;
}
@media screen and ( max-width: 768px ) {
  .footer-content__text span {
    font-size: 18px;
  }
}
.footer-content__text p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  letter-spacing: 2.34px;
}
@media screen and ( max-width: 768px ) {
  .footer-content__text p {
    font-size: 16px;
  }
}
.footer-content__text a {
  color: #1a2b3c;
  font-family: Inter;
  font-size: 52px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
  display: block;
}
@media screen and ( max-width: 768px ) {
  .footer-content__text a {
    font-size: 36px;
  }
}

.footer-tel {
  margin-bottom: 29px;
}

.footer-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
}
@media screen and ( max-width: 1100px ) {
  .footer-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.footer-btn a {
  border-radius: 30px;
  border: 1px solid #d2d2d2;
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  /* 28.8px */
  letter-spacing: 0.8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 320px;
  height: 64px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 18px;
}
.footer-btn .footer-btn__consulting a {
  background: #1dd8a7;
}
.footer-btn .footer-btn__mail a {
  background: #1a2b3c;
}

.footer-nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 133px;
}
@media screen and ( max-width: 1100px ) {
  .footer-nav-menu {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
  }
}
@media screen and ( max-width: 1100px ) {
  .footer-nav-menu .footer-nav-menu__block {
    width: calc(50% - 15px);
  }
}
.footer-nav-menu .footer-nav-menu__block strong {
  color: #1dd8a7;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 3px;
}
@media screen and ( max-width: 1100px ) {
  .footer-nav-menu .footer-nav-menu__block strong {
    font-size: 16px;
  }
}
.footer-nav-menu .footer-nav-menu__block ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer-nav-menu .footer-nav-menu__block ul li {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  /* 28.8px */
  letter-spacing: 1.6px;
}
@media screen and ( max-width: 1100px ) {
  .footer-nav-menu .footer-nav-menu__block ul li {
    font-size: 12px;
  }
}
.footer-nav-menu .footer-nav-menu__block ul li span {
  margin-left: 7px;
}

.footer-nav {
  padding: 65px 0 0;
}

.footer-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 56px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: clamp(24px, 15.7009345794px + 0.0224299065 * 100vw, 48px);
}
@media screen and (max-width: 1100px) {
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}
@media screen and ( max-width: 768px ) {
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 10px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-bottom p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  /* 35.2px */
  letter-spacing: 2.08px;
}
@media screen and (max-width: 1100px) {
  .footer-bottom p {
    font-size: 12px;
  }
}
@media screen and ( max-width: 768px ) {
  .footer-bottom p {
    font-size: 10px;
    text-align: center;
  }
}
.footer-bottom p small {
  display: inline-block;
  font-size: 12px;
  line-height: 140%;
}
.footer-bottom a {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  /* 35.2px */
  letter-spacing: 1.6px;
}
@media screen and (max-width: 1100px) {
  .footer-bottom a {
    font-size: 12px;
  }
}
@media screen and ( max-width: 768px ) {
  .footer-bottom a {
    font-size: 12px;
    text-align: center;
  }
}
.footer-bottom .footer-bottom__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media screen and ( max-width: 768px ) {
  .footer-bottom .footer-bottom__links {
    display: none;
  }
}

.footer-legal {
  margin-top: 24px;
  padding-bottom: 40px;
  color: #666;
  font-family: "Zen Kaku Gothic New";
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
}
@media screen and ( max-width: 768px ) {
  .footer-legal {
    font-size: 10px;
    text-align: center;
  }
}
.footer-legal__license {
  margin-bottom: 4px;
}
.footer-legal__affiliations a {
  color: #666;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-legal__affiliations a:hover {
  opacity: 0.8;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-list-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.25s ease, visibility 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.form-list-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.form-list-overlay.is-open .form-list-modal {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.form-list-overlay__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#1dd8a7), to(#45a015));
  background: -webkit-linear-gradient(top, #1dd8a7 0%, #45a015 100%);
  background: linear-gradient(180deg, #1dd8a7 0%, #45a015 100%);
  opacity: 0.5;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  cursor: pointer;
}

.form-list-modal {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #fff;
  border: 6px solid #1dd8a7;
  border-radius: 24px;
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 48px 56px 56px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
  z-index: 1;
}
@media screen and ( max-width: 1100px ) {
  .form-list-modal {
    padding: 40px 32px 48px;
    max-width: 100%;
  }
}
@media screen and ( max-width: 768px ) {
  .form-list-modal {
    padding: 32px 20px 40px;
    border-radius: 16px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.form-list-modal__close {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.form-list-modal__close::before, .form-list-modal__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #222;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.form-list-modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.form-list-modal__close:hover {
  background: rgba(0, 0, 0, 0.06);
}
@media screen and ( max-width: 768px ) {
  .form-list-modal__close {
    right: 16px;
    top: 16px;
    width: 36px;
    height: 36px;
  }
  .form-list-modal__close::before, .form-list-modal__close::after {
    width: 16px;
  }
}

.form-list-modal__section-title {
  color: #222;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-align: center;
}
@media screen and ( max-width: 768px ) {
  .form-list-modal__section-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.form-list-modal__section--mansion {
  background: #edfffa;
  border-radius: 24px;
  padding: 24px;
}
@media screen and ( max-width: 768px ) {
  .form-list-modal__section--mansion {
    border-radius: 16px;
    padding: 20px;
  }
}
.form-list-modal__section--other {
  background: #f8f9fa;
  border-radius: 24px;
  padding: 24px;
}
@media screen and ( max-width: 768px ) {
  .form-list-modal__section--other {
    border-radius: 16px;
    padding: 20px;
  }
}

.form-list-modal__divider {
  height: 1px;
  background: #e0e0e0;
  margin: 32px 0 32px;
}
@media screen and ( max-width: 768px ) {
  .form-list-modal__divider {
    margin: 28px 0 28px;
  }
}

.form-list-modal__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}
@media screen and ( max-width: 1100px ) {
  .form-list-modal__row {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 24px;
  }
}
@media screen and ( max-width: 768px ) {
  .form-list-modal__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.form-list-modal__item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 0 24px;
  border-right: 1px dotted #ccc;
}
.form-list-modal__item:first-child {
  padding-left: 0;
}
.form-list-modal__item:last-child {
  padding-right: 0;
  border-right: none;
}
@media screen and ( max-width: 1100px ) {
  .form-list-modal__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 calc(33.333% - 16px);
        -ms-flex: 1 1 calc(33.333% - 16px);
            flex: 1 1 calc(33.333% - 16px);
    padding: 0;
    border-right: none;
    border-bottom: none;
  }
}
@media screen and ( max-width: 768px ) {
  .form-list-modal__item {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    padding: 0;
    border-right: none;
    text-align: center;
  }
}

.form-list-modal__item-heading {
  color: #222;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  text-align: center;
}
@media screen and ( max-width: 768px ) {
  .form-list-modal__item-heading {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

.form-list-modal__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 60px;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.02s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.02s ease;
  transition: opacity 0.2s ease, transform 0.02s ease;
  transition: opacity 0.2s ease, transform 0.02s ease, -webkit-transform 0.02s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.form-list-modal__btn:hover {
  opacity: 0.9;
}
.form-list-modal__btn:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
.form-list-modal__btn--green {
  background: #1dd8a7;
}
.form-list-modal__btn--dark {
  background: #1a2b3c;
}
@media screen and ( max-width: 768px ) {
  .form-list-modal__btn {
    min-height: 48px;
    font-size: 13px;
  }
}

.footer-introduction {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and ( max-width: 768px ) {
  .footer-introduction {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-introduction p small {
  display: inline-block;
  font-size: clamp(8px, 6.6168224299px + 0.0037383178 * 100vw, 12px);
  line-height: 140%;
}
.footer-introduction__jfa {
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 394px;
  width: 100%;
}
.footer-introduction__jfa img {
  width: 112px;
  aspect-ratio: 112/75;
}
.footer-introduction__jfa p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 14.4px */
}

.footer-bottom__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.footer-introduction-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(24px, 24px + 0 * 100vw, 24px);
}
@media screen and (max-width: 480px) {
  .footer-introduction-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-introduction-right__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(16px, 16px + 0 * 100vw, 16px);
}
.footer-introduction-right__sns svg {
  width: 48px;
}
@media screen and ( max-width: 768px ) {
  .footer-introduction-right__sns {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
  }
  .footer-introduction-right__sns svg {
    height: auto;
  }
}

@-webkit-keyframes p-top-feature-btn-flash {
  0% {
    -webkit-transform: translateX(-100%) skewX(-18deg);
            transform: translateX(-100%) skewX(-18deg);
  }
  100% {
    -webkit-transform: translateX(450%) skewX(-18deg);
            transform: translateX(450%) skewX(-18deg);
  }
}

@keyframes p-top-feature-btn-flash {
  0% {
    -webkit-transform: translateX(-100%) skewX(-18deg);
            transform: translateX(-100%) skewX(-18deg);
  }
  100% {
    -webkit-transform: translateX(450%) skewX(-18deg);
            transform: translateX(450%) skewX(-18deg);
  }
}
.home .p_top-mv {
  height: min(540px, 37.5vw);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and ( max-width: 768px ) {
  .home .p_top-mv {
    height: auto;
    padding-top: 41.65px;
    padding-bottom: 40px;
  }
}
.home .p_top-mv-title {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: min(28px, 1.9444444444vw);
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  letter-spacing: min(3.64px, 0.2527777778vw);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and ( max-width: 768px ) {
  .home .p_top-mv-title {
    color: #222;
    font-family: "Zen Kaku Gothic New";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 220%;
    /* 44px */
    letter-spacing: 2.6px;
  }
}
.home .p_top-mv-laurel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: min(449.53px, 31.2173611111vw);
}
@media screen and ( max-width: 768px ) {
  .home .p_top-mv-laurel {
    width: 338px;
  }
  .home .p_top-mv-laurel.sp-only {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.home .p_top-mv__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(36px, 2.5vw);
  padding-bottom: min(13.3px, 0.9236111111vw);
}
@media screen and ( max-width: 768px ) {
  .home .p_top-mv__text {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.home .p_top-mv__wrapper {
  max-width: min(1268px, 88.0555555556vw);
  margin: 0 auto;
  width: 95%;
  position: relative;
}
@media screen and ( max-width: 768px ) {
  .home .p_top-mv__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.home .p_top-mv__img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(515px, 35.7638888889vw);
  height: min(449px, 31.1805555556vw);
}
@media screen and ( max-width: 768px ) {
  .home .p_top-mv__img {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    position: relative;
    width: 331px;
    height: auto;
  }
}
@media screen and ( max-width: 768px ) {
  .home .p_top-mv-laurel.sp-only {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    opacity: 0;
    /* JS(GSAP)で表示するまで非表示 */
  }
}
.home .p_top-gift {
  padding: 27.1px 0;
  background: #fff;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 68.14px;
}
.home .p_top-gift-content {
  background: #fff;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
.home .p_top-gift-content__title {
  padding: 3.87px 0;
  background: #4caf18;
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
@media screen and ( max-width: 768px ) {
  .home .p_top-gift-content__title {
    font-size: 18px;
  }
}
.home .p_top-gift-content__lead {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  padding: 0 68.5px;
}
@media screen and ( max-width: 768px ) {
  .home .p_top-gift-content__lead {
    font-size: 16px;
    padding: 0 20px;
  }
}
.home .p_top-gift-content__lead p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}
.home .p_top-gift-content__lead span {
  color: #4caf18;
  font-family: Inter;
  font-size: 44px;
  font-weight: 800;
  line-height: 150%;
  display: inline-block;
}
@media screen and ( max-width: 768px ) {
  .home .p_top-gift-content__lead span {
    font-size: 24px;
  }
}
.home .p_top-consulting {
  position: relative;
}
@media screen and ( max-width: 768px ) {
  .home .p_top-consulting .title {
    margin-bottom: 70px;
  }
}
.home .p_top-consulting {
  margin-bottom: 74px;
}
@media screen and ( max-width: 768px ) {
  .home .p_top-consulting {
    margin-bottom: 169px;
  }
}
.home .p_top-consulting {
  /* 右側だけインナーを飛び出して横スクロール（SP・タブレット時） */
}
.home .p_top-consulting .p_top-consulting-card {
  margin-right: calc(50% - 50vw);
  margin-left: -16px;
  padding-left: 16px;
  overflow-x: auto;
  /* box-shadow用の余白（0 8px 16px の影が切れないように） */
  padding-right: 16px;
  padding-bottom: 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.home .p_top-consulting .p_top-consulting-card::-webkit-scrollbar {
  height: 6px;
}
.home .p_top-consulting .p_top-consulting-card::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
@media screen and ( min-width: 1266px ) {
  .home .p_top-consulting .p_top-consulting-card {
    margin-right: 0;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }
}
.home .p_top-consulting .p_top-consulting-card__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and ( min-width: 1266px ) {
  .home .p_top-consulting .p_top-consulting-card__list {
    width: 100%;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.home .p_top-consulting .p_top-consulting-card__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 34px;
  width: 540px;
  height: auto;
  border-radius: 24px;
  background: #fff;
  -webkit-box-shadow: 0 8px 16px 0 rgba(34, 34, 34, 0.1);
          box-shadow: 0 8px 16px 0 rgba(34, 34, 34, 0.1);
  padding: 62.09px 30px 30px;
  min-width: 540px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (min-width: 1266px) {
  .home .p_top-consulting .p_top-consulting-card__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and ( min-width: 1266px ) {
  .home .p_top-consulting .p_top-consulting-card__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 calc((100% - 48px) / 3);
        -ms-flex: 1 1 calc((100% - 48px) / 3);
            flex: 1 1 calc((100% - 48px) / 3);
    width: auto;
    min-width: 0;
    max-width: 540px;
  }
}
@media screen and ( max-width: 768px ) {
  .home .p_top-consulting .p_top-consulting-card__item {
    min-width: 320px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    height: auto;
    width: 320px;
    gap: 20px;
  }
}
.home .p_top-consulting .p_top-consulting-card__item .p_top-consulting-card__item-img {
  height: 172px;
  margin: 0 auto;
}
@media screen and ( max-width: 768px ) {
  .home .p_top-consulting .p_top-consulting-card__item .p_top-consulting-card__item-img {
    margin: 0 auto;
  }
}
.home .p_top-consulting .p_top-consulting-card__item .p_top-consulting-card__item-img img {
  width: auto;
  height: 100%;
}
.home .p_top-consulting .p_top-consulting-card__item .p_top-consulting-card__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.home .p_top-consulting .p_top-consulting-card__item .p_top-consulting-card__text h3 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  /* 39.6px */
  letter-spacing: 2.34px;
  margin-bottom: 24px;
}
.home .p_top-consulting .p_top-consulting-card__item .p_top-consulting-card__text p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  margin-bottom: 24px;
  height: 86.39px;
}
.home .p_top-consulting .p_top-consulting-card__item .p_top-consulting-card__text a {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid #d2d2d2;
  background: #1dd8a7;
  padding: 8.91px 18px;
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  /* 28.8px */
  letter-spacing: 0.8px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  /* ホバー時：一瞬光が走るフラッシュ */
}
.home .p_top-consulting .p_top-consulting-card__item .p_top-consulting-card__text a::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  margin-left: -30%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, rgba(255, 255, 255, 0.4)), to(transparent));
  background: -webkit-linear-gradient(left, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  -webkit-transform: skewX(-18deg);
          transform: skewX(-18deg);
  pointer-events: none;
}
.home .p_top-consulting .p_top-consulting-card__item .p_top-consulting-card__text a:hover::after {
  -webkit-animation: p-top-feature-btn-flash 0.5s ease-out;
          animation: p-top-feature-btn-flash 0.5s ease-out;
}
.home .p_top-consulting .p_top-consulting-card__item .p_top-consulting-card__text a:hover {
  background: #19c99a;
}
.home .p_top-consulting .p_top-consulting-card__item .p_top-consulting-card__text a:active {
  background: #17b88f;
}
@media screen and ( max-width: 768px ) {
  .home .p_top-consulting .p_top-consulting-card__item .p_top-consulting-card__text a {
    margin-top: auto;
  }
}
.home .p_top-point {
  position: relative;
  margin-bottom: 63px;
  /* 右側だけインナーを飛び出して横スクロール（SP・タブレット時） */
}
.home .p_top-point .p_top-point-card {
  margin-right: calc(50% - 50vw);
  margin-left: -16px;
  padding-left: 16px;
  overflow-x: auto;
  /* box-shadow用の余白（0 8px 16px の影が切れないように） */
  padding-right: 16px;
  padding-bottom: 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.home .p_top-point .p_top-point-card::-webkit-scrollbar {
  height: 6px;
}
.home .p_top-point .p_top-point-card::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
@media screen and ( min-width: 1266px ) {
  .home .p_top-point .p_top-point-card {
    margin-right: 0;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }
}
.home .p_top-point .p_top-point-card__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and ( min-width: 1266px ) {
  .home .p_top-point .p_top-point-card__list {
    width: 100%;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.home .p_top-point .p_top-point-card__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  width: 540px;
  height: 502.82px;
  min-width: 540px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
@media screen and ( min-width: 1266px ) {
  .home .p_top-point .p_top-point-card__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 calc((100% - 48px) / 3);
        -ms-flex: 1 1 calc((100% - 48px) / 3);
            flex: 1 1 calc((100% - 48px) / 3);
    width: auto;
    min-width: 0;
    max-width: 540px;
  }
}
@media screen and ( max-width: 768px ) {
  .home .p_top-point .p_top-point-card__item {
    height: auto;
    width: 320px;
    min-width: 320px;
    height: auto;
    gap: 20px;
    overflow: unset;
  }
}
.home .p_top-point .p_top-point-card__item .p_top-point-card__item-img {
  width: 100%;
  height: 199px;
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (max-width: 1265px) {
  .home .p_top-point .p_top-point-card__item .p_top-point-card__item-img {
    height: auto;
  }
}
.home .p_top-point .p_top-point-card__item .p_top-point-card__item-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.home .p_top-point .p_top-point-card__item .p_top-point-card__item-text h3 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  /* 39.6px */
  letter-spacing: 2.34px;
  margin-bottom: 24px;
}
@media screen and ( max-width: 768px ) {
  .home .p_top-point .p_top-point-card__item .p_top-point-card__item-text h3 {
    margin-bottom: 10px;
  }
}
.home .p_top-point .p_top-point-card__item .p_top-point-card__item-text p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  margin-bottom: 24px;
}
@media screen and ( max-width: 768px ) {
  .home .p_top-point .p_top-point-card__item .p_top-point-card__item-text p {
    margin-bottom: 20px;
  }
}
.home .p_top-point .p_top-point-card__item .p_top-point-card__item-text a {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid #d2d2d2;
  background: #1dd8a7;
  padding: 8.91px 49px;
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  /* 28.8px */
  letter-spacing: 0.8px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.home .p_top-point .p_top-point-card__item .p_top-point-card__item-text a::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 30%;
  margin-left: -30%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, rgba(255, 255, 255, 0.4)), to(transparent));
  background: -webkit-linear-gradient(left, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  -webkit-transform: skewX(-18deg);
          transform: skewX(-18deg);
  pointer-events: none;
}
.home .p_top-point .p_top-point-card__item .p_top-point-card__item-text a:hover::after {
  -webkit-animation: p-top-feature-btn-flash 0.5s ease-out;
          animation: p-top-feature-btn-flash 0.5s ease-out;
}
.home .p_top-point .p_top-point-card__item .p_top-point-card__item-text a:hover {
  background: #19c99a;
}
.home .p_top-point .p_top-point-card__item .p_top-point-card__item-text a:active {
  background: #17b88f;
}
.home .p_top-catch {
  background: -webkit-gradient(linear, left top, left bottom, from(#1dd8a7), to(#45a015));
  background: -webkit-linear-gradient(top, #1dd8a7 0%, #45a015 100%);
  background: linear-gradient(180deg, #1dd8a7 0%, #45a015 100%);
}
.home .p_top-catch .p_top-catch__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 66.49px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 761.51px;
  margin: 0 auto;
  padding: 68.18px 0 83.09px;
}
@media screen and ( max-width: 768px ) {
  .home .p_top-catch .p_top-catch__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
    gap: 40px;
  }
}
.home .p_top-catch .p_top-catch__content .p_top-catch__content-img {
  width: clamp(200px, 186.1682242991px + 0.0373831776 * 100vw, 240px);
}
.home .p_top-catch .p_top-catch__content .p_top-catch__content-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.home .p_top-catch .p_top-catch__content .p_top-catch__content-text p {
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  /* 28.8px */
  letter-spacing: 2.08px;
}
.home .p_top-about {
  padding-top: 100.91px;
  padding-bottom: 82.36px;
}
@media screen and ( max-width: 768px ) {
  .home .p_top-about {
    padding: 60px 0;
  }
}
.home .p_top-about-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 48px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home .p_top-about-card .p_top-about-card__item {
  width: 368px;
}
.home .p_top-about-card .p_top-about-card__item .p_top-card__item-title h3 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 32px;
  letter-spacing: 2.2px;
}
.home .p_top-about-card .p_top-about-card__item .p_top-about-card__item-img {
  margin-bottom: 32px;
  border-radius: 24px;
  overflow: hidden;
}
.home .p_top-about-card .p_top-about-card__item .p_top-about-card__item-text p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  margin-bottom: 24px;
}
.home .p_top-about-card .p_top-about-card__item .p_top-about-card__item-text a {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid #d2d2d2;
  background: #45a015;
  padding: 7.7px 0;
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  /* 28.8px */
  letter-spacing: 0.8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 182px;
  width: 100%;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.home .p_top-about-card .p_top-about-card__item .p_top-about-card__item-text a::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 30%;
  margin-left: -30%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, rgba(255, 255, 255, 0.4)), to(transparent));
  background: -webkit-linear-gradient(left, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  -webkit-transform: skewX(-18deg);
          transform: skewX(-18deg);
  pointer-events: none;
}
.home .p_top-about-card .p_top-about-card__item .p_top-about-card__item-text a:hover::after {
  -webkit-animation: p-top-feature-btn-flash 0.5s ease-out;
          animation: p-top-feature-btn-flash 0.5s ease-out;
}
.home .p_top-about-card .p_top-about-card__item .p_top-about-card__item-text a:hover {
  background: #3d8f12;
}
.home .p_top-about-card .p_top-about-card__item .p_top-about-card__item-text a:active {
  background: #357c10;
}
.home .p_top-pr {
  padding: 73.82px 0 109.18px;
}
@media screen and ( max-width: 768px ) {
  .home .p_top-pr {
    padding: 60px 0;
  }
}
.home .p_top-pr__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: min(198px, 13.75vw);
}
@media screen and ( max-width: 768px ) {
  .home .p_top-pr__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.home .p_top-pr__list {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.home .p_top-pr__item-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.home .p_top-pr__item-info .p_top-pr__item-date {
  color: #1dd8a7;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 14px */
}
.home .p_top-pr__item-info .p_top-pr__item-cat {
  color: #45a015;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  border-radius: 4px;
  border: 1px dashed #45a015;
  padding: 4px 8px;
}
.home .p_top-pr__item-title h3 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 19.2px */
}
.home .p_top-recruit__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 28.7px;
  max-width: 1279.7px;
  margin-right: calc(50% - 48vw);
}
.home .p_top-recruit {
  padding: 53px 0;
  background: #fff;
}
.home .p_top-recruit-img {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 646px;
  mix-blend-mode: multiply;
  margin-left: auto;
}
.home .p_top-recruit-text {
  width: 412px;
}
.home .p_top-recruit-text .title {
  margin-bottom: 25px;
}
.home .p_top-recruit-text .p_top-recruit-text__lead {
  margin-bottom: 24px;
}
.home .p_top-recruit-text .p_top-recruit-text__lead p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
}
.home .p_top-recruit-text__btn a {
  border-radius: 30px;
  border: 1px solid #d2d2d2;
  background: #1dd8a7;
  padding: 8.91px 49px;
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.8px;
}

.p_about .page-contents {
  position: relative;
}
.p_about .page-contents::after {
  width: min(640px, 44.4444444444vw);
  height: min(484px, 33.6111111111vw);
  background: url(../img/service-about-bg.webp) no-repeat center center/cover;
  position: absolute;
  top: 247px;
  right: 0;
  content: "";
}
@media (max-width: 950px) {
  .p_about .page-contents::after {
    display: none;
  }
}
.p_about .p_service-about__img {
  display: none;
}
@media (max-width: 950px) {
  .p_about .p_service-about__img {
    display: block;
    max-width: 360px;
    margin: 0 auto;
  }
}
.p_about .p_service-about__lead p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
}
@media screen and ( max-width: 768px ) {
  .p_about .p_service-about__lead p {
    font-size: 15px;
  }
}
.p_about .p_service-about__lead p:first-of-type {
  width: 62%;
}
@media (max-width: 950px) {
  .p_about .p_service-about__lead p:first-of-type {
    width: 100%;
  }
}
.p_about .p_service-about__lead p:nth-of-type(2) {
  width: 55%;
}
@media (max-width: 950px) {
  .p_about .p_service-about__lead p:nth-of-type(2) {
    width: 100%;
  }
}
.p_about .p_service-about__lead p:nth-of-type(3) {
  width: 51%;
}
@media (max-width: 950px) {
  .p_about .p_service-about__lead p:nth-of-type(3) {
    width: 100%;
  }
}
.p_about .p_service-about__lead p:nth-of-type(4) {
  width: 47%;
}
@media (max-width: 950px) {
  .p_about .p_service-about__lead p:nth-of-type(4) {
    width: 100%;
  }
}
.p_about .p_service-about__lead p + p {
  margin-top: 1em;
}
.p_about .p_service-about__lead p span {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
@media screen and ( max-width: 768px ) {
  .p_about .p_service-about__lead p span {
    font-size: 18px;
  }
}
.p_about .p_service-message {
  margin-top: 50px;
}
.p_about .p_policy-section {
  margin-top: 2em;
}
.p_about .p_policy-section:first-child {
  margin-top: 0;
}
.p_about .p_policy-section__title {
  color: #222;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.75em;
}
@media screen and ( max-width: 768px ) {
  .p_about .p_policy-section__title {
    font-size: 16px;
  }
}
.p_about .p_policy-section__subtitle {
  color: #222;
  font-size: 16px;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
@media screen and ( max-width: 768px ) {
  .p_about .p_policy-section__subtitle {
    font-size: 15px;
  }
}
.p_about .p_policy-list {
  margin: 0.75em 0 0 1.5em;
  padding: 0;
  list-style: disc;
}
.p_about .p_policy-list li {
  color: #222;
  font-size: 16px;
  line-height: 180%;
  margin-bottom: 0.5em;
}
@media screen and ( max-width: 768px ) {
  .p_about .p_policy-list li {
    font-size: 15px;
  }
}
.p_about .p_service-message-media__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p_about .p_service-message-media__text p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
}
@media screen and ( max-width: 768px ) {
  .p_about .p_service-message-media__text p {
    font-size: 15px;
  }
}
.p_about .p_service-message-media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 51px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and ( max-width: 768px ) {
  .p_about .p_service-message-media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.p_about .p_service-message-media .p_service-message-media__img {
  width: 410px;
}
@media screen and ( max-width: 768px ) {
  .p_about .p_service-message-media .p_service-message-media__img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
.p_about .p_service-company__list dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p_about .p_service-company__list dl + dl {
  margin-top: 2px;
}
.p_about .p_service-company__list dl dt {
  background: #1dd8a7;
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  padding: 10px 15px;
  width: 30%;
  min-width: 260px;
}
@media screen and ( max-width: 768px ) {
  .p_about .p_service-company__list dl dt {
    width: 112px;
    min-width: auto;
    font-size: 15px;
  }
}
.p_about .p_service-company__list dl dd {
  padding: 10px 15px;
  background: #fff;
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and ( max-width: 768px ) {
  .p_about .p_service-company__list dl dd {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
  }
}
.p_about .p_service-access__info {
  margin-bottom: 27px;
}
.p_about .p_service-access__info h3 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 30.8px */
  letter-spacing: 2.2px;
  margin-bottom: 12px;
}
@media screen and ( max-width: 768px ) {
  .p_about .p_service-access__info h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.p_about .p_service-access__info p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
}
@media screen and ( max-width: 768px ) {
  .p_about .p_service-access__info p {
    font-size: 15px;
  }
}
.p_about .p_service-access__map p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  /* 28.8px */
  letter-spacing: 0.8px;
  margin-bottom: 56px;
}
@media screen and ( max-width: 768px ) {
  .p_about .p_service-access__map p {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
.p_about .p_service-access__map iframe {
  aspect-ratio: 1160/491;
}
@media screen and ( max-width: 768px ) {
  .p_about .p_service-access__map iframe {
    aspect-ratio: 360/180;
  }
}

.p_contact-area .wpcf7 .form-area {
  border-radius: 24px;
  background: #fff;
  padding: 63px 82px 73px;
}
@media screen and ( max-width: 768px ) {
  .p_contact-area .wpcf7 .form-area {
    padding: 40px 20px;
  }
}
.p_contact-area .wpcf7 .form-area dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and ( max-width: 768px ) {
  .p_contact-area .wpcf7 .form-area dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }
}
.p_contact-area .wpcf7 .form-area dl dt {
  width: clamp(190px, 159.5700934579px + 0.0822429907 * 100vw, 278px);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and ( max-width: 768px ) {
  .p_contact-area .wpcf7 .form-area dl dt {
    width: 100%;
  }
}
.p_contact-area .wpcf7 .form-area dl dt p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  /* 35.2px */
}
.p_contact-area .wpcf7 .form-area dl dt .required {
  color: #1dd8a7;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  border-radius: 4px;
  border: 1px dashed #1dd8a7;
  white-space: nowrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 46px;
  height: 23px;
}
.p_contact-area .wpcf7 .form-area dl dt .optional {
  color: rgba(34, 34, 34, 0.25);
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  border-radius: 4px;
  border: 1px dashed rgba(34, 34, 34, 0.25);
  white-space: nowrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 46px;
  height: 23px;
}
.p_contact-area .wpcf7 .form-area dl dd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: rgba(34, 34, 34, 0.25);
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
}
@media screen and ( max-width: 768px ) {
  .p_contact-area .wpcf7 .form-area dl dd {
    width: 100%;
  }
}
.p_contact-area .wpcf7 .form-area dl dd {
  /* 35.2px */
}
.p_contact-area .wpcf7 .form-area dl dd.name-group .name-fields br {
  display: none;
}
.p_contact-area .wpcf7 .form-area dl dd.name-group .name-fields p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and ( max-width: 768px ) {
  .p_contact-area .wpcf7 .form-area dl dd.name-group .name-fields p {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.p_contact-area .wpcf7 .form-area dl dd.name-group .name-fields p .wpcf7-form-control-wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p_contact-area .wpcf7 .form-input,
.p_contact-area .wpcf7 .form-select,
.p_contact-area .wpcf7 .form-textarea {
  width: 100%;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New";
  color: #222;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.p_contact-area .wpcf7 .form-input:focus,
.p_contact-area .wpcf7 .form-select:focus,
.p_contact-area .wpcf7 .form-textarea:focus {
  outline: none;
  border-color: #1dd8a7;
}
.p_contact-area .wpcf7 .form-input::-webkit-input-placeholder, .p_contact-area .wpcf7 .form-select::-webkit-input-placeholder, .p_contact-area .wpcf7 .form-textarea::-webkit-input-placeholder {
  color: rgba(34, 34, 34, 0.25);
}
.p_contact-area .wpcf7 .form-input::-moz-placeholder, .p_contact-area .wpcf7 .form-select::-moz-placeholder, .p_contact-area .wpcf7 .form-textarea::-moz-placeholder {
  color: rgba(34, 34, 34, 0.25);
}
.p_contact-area .wpcf7 .form-input:-ms-input-placeholder, .p_contact-area .wpcf7 .form-select:-ms-input-placeholder, .p_contact-area .wpcf7 .form-textarea:-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.25);
}
.p_contact-area .wpcf7 .form-input::-ms-input-placeholder, .p_contact-area .wpcf7 .form-select::-ms-input-placeholder, .p_contact-area .wpcf7 .form-textarea::-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.25);
}
.p_contact-area .wpcf7 .form-input::placeholder,
.p_contact-area .wpcf7 .form-select::placeholder,
.p_contact-area .wpcf7 .form-textarea::placeholder {
  color: rgba(34, 34, 34, 0.25);
}
.p_contact-area .wpcf7 .form-select {
  color: rgba(34, 34, 34, 0.25);
}
.p_contact-area .wpcf7 .form-select.selected {
  color: #222;
}
.p_contact-area .wpcf7 .form-textarea {
  min-height: 150px;
  resize: vertical;
}
.p_contact-area .wpcf7 .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 14px;
  margin-top: 8px;
  display: block;
}
.p_contact-area .wpcf7 .wpcf7-validation-errors,
.p_contact-area .wpcf7 .wpcf7-acceptance-missing {
  border: 2px solid #dc3232;
  background: #fff5f5;
  color: #dc3232;
  padding: 16px;
  margin-top: 24px;
  border-radius: 4px;
}
.p_contact-area .wpcf7 .wpcf7-mail-sent-ok {
  border: 2px solid #1dd8a7;
  background: #f0fdf9;
  color: #1dd8a7;
  padding: 16px;
  margin-top: 24px;
  border-radius: 4px;
}
.p_contact-area .wpcf7 .wpcf7-spinner {
  margin-left: 16px;
}
.p_contact-area .wpcf7 .form-btn {
  text-align: center;
  margin-top: 48px;
}
.p_contact-area .wpcf7 .form-btn .submit-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #1dd8a7;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Zen Kaku Gothic New";
  width: 240px;
  height: 47px;
  margin: 0 auto;
}
.p_contact-area .wpcf7 .form-btn .submit-button:hover {
  background: #18c396;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(29, 216, 167, 0.3);
          box-shadow: 0 4px 12px rgba(29, 216, 167, 0.3);
}
.p_contact-area .wpcf7 .form-btn .submit-button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and ( max-width: 768px ) {
  .p_contact-area .wpcf7 .form-btn .submit-button {
    width: 100%;
    padding: 16px 32px;
  }
}
.p_contact-area .wpcf7 .wpcf7-not-valid {
  border: 2px solid #dc3232;
  border-radius: 4px;
  padding: 2px;
}
.p_contact-area .wpcf7 .wpcf7-not-valid .form-input,
.p_contact-area .wpcf7 .wpcf7-not-valid .form-select,
.p_contact-area .wpcf7 .wpcf7-not-valid .form-textarea {
  border-color: #dc3232;
}
.p_contact-area .wpcf7 .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}
.p_contact-area .wpcf7 .form-textarea {
  height: 108px;
}
.p_contact-area .wpcf7 .form-area--cancellation > .wpcf7-response-output {
  margin-bottom: 24px;
}
.p_contact-area .wpcf7 .form-area--cancellation .form-area__lead {
  margin-bottom: 24px;
  font-weight: 700;
  color: #222;
  font-size: 16px;
  line-height: 1.7;
}
.p_contact-area .wpcf7 .form-area--cancellation .form-area__notice {
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.p_contact-area .wpcf7 .form-area--cancellation .form-area__notice-title {
  margin: 0 0 20px;
  padding-bottom: 12px;
  color: #222;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #1dd8a7;
}
@media screen and ( max-width: 768px ) {
  .p_contact-area .wpcf7 .form-area--cancellation .form-area__notice-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.p_contact-area .wpcf7 .form-area--cancellation .form-area__section-title {
  margin: 24px 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.p_contact-area .wpcf7 .form-area--cancellation .form-area__section-title:first-child {
  margin-top: 0;
}
.p_contact-area .wpcf7 .form-area--cancellation .form-area__notice-text {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 400;
  color: #222;
  line-height: 1.7;
}
.p_contact-area .wpcf7 .form-area--cancellation .form-area__notice dl {
  margin-bottom: 20px;
}
.p_contact-area .wpcf7 .form-area--cancellation .form-area__notice dd {
  color: #222;
}
.p_contact-area .wpcf7 .form-area--cancellation .form-area__notice dl dd > p:not(.form-area__notice-text) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  margin-top: 8px;
  color: #222;
  font-size: 15px;
  font-weight: 500;
}
.p_contact-area .wpcf7 .form-area--cancellation .form-acceptance,
.p_contact-area .wpcf7 .form-area--cancellation .form-acceptance .wpcf7-list-item,
.p_contact-area .wpcf7 .form-area--cancellation .form-acceptance .wpcf7-form-control-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #222;
}
.p_contact-area .wpcf7 .form-area--cancellation .form-acceptance label {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #222;
  font-weight: 500;
  cursor: pointer;
}
.p_contact-area .wpcf7 .form-area--cancellation .form-acceptance .wpcf7-list-item-label {
  color: #222;
  font-weight: 500;
}
.p_contact-area .wpcf7 .form-area--cancellation .form-acceptance input[type=checkbox] {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0;
}

.p-service-jfa__list {
  border-radius: 24px;
  border: 2px solid #1dd8a7;
  background: #fff;
  -webkit-box-shadow: 0 8px 16px 0 rgba(34, 34, 34, 0.1);
          box-shadow: 0 8px 16px 0 rgba(34, 34, 34, 0.1);
  padding: clamp(20px, 10.3177570093px + 0.0261682243 * 100vw, 48px);
}
.p-service-jfa__list .p-service-jfa__list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(24px, 18.4672897196px + 0.014953271 * 100vw, 40px);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and ( max-width: 768px ) {
  .p-service-jfa__list .p-service-jfa__list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-service-jfa__list img {
  width: 324px;
  aspect-ratio: 3/2;
}
.p-service-jfa__list p {
  width: calc(100% - 324px);
}
@media screen and ( max-width: 768px ) {
  .p-service-jfa__list p {
    width: 100%;
  }
}

.p_recruit .p_recruit-message {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 76px;
}
@media screen and (max-width: 860px) {
  .p_recruit .p_recruit-message {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p_recruit .p_recruit-message__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p_recruit .p_recruit-message__text .p_recruit-message__text-strong {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  /* 48.4px */
  letter-spacing: 2.2px;
  margin-bottom: 24px;
}
@media screen and ( max-width: 768px ) {
  .p_recruit .p_recruit-message__text .p_recruit-message__text-strong {
    font-size: 18px;
  }
}
.p_recruit .p_recruit-message__text .p_recruit-message__text-lead p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%;
  /* 35.2px */
}
@media screen and ( max-width: 768px ) {
  .p_recruit .p_recruit-message__text .p_recruit-message__text-lead p {
    font-size: 15px;
  }
}
.p_recruit .p_recruit-message__img {
  width: 40%;
  height: 620px;
}
.p_recruit .p_recruit-message__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_recruit .p_recruit-message__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p_recruit .p_recruit-message__text .p_recruit-message__text-strong {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  /* 48.4px */
  letter-spacing: 2.2px;
  margin-bottom: 24px;
}
@media screen and ( max-width: 768px ) {
  .p_recruit .p_recruit-message__text .p_recruit-message__text-strong {
    font-size: 18px;
  }
}
.p_recruit .p_recruit-message__text .p_recruit-message__text-lead p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%;
  /* 35.2px */
}
@media screen and ( max-width: 768px ) {
  .p_recruit .p_recruit-message__text .p_recruit-message__text-lead p {
    font-size: 15px;
  }
}
.p_recruit .p_recruit-message__img {
  width: 40%;
  height: 620px;
}
@media screen and (max-width: 860px) {
  .p_recruit .p_recruit-message__img {
    width: 320px;
    height: auto;
    margin: 0 auto;
  }
}
.p_recruit .p_recruit-message__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_recruit .p_recruit-about {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: min(180px, 12.5vw);
  margin-bottom: 80px;
}
@media screen and (max-width: 860px) {
  .p_recruit .p_recruit-about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p_recruit .p_recruit-about .p_recruit-message__img {
  width: 40%;
  height: 500px;
}
@media screen and (max-width: 860px) {
  .p_recruit .p_recruit-about .p_recruit-message__img {
    width: 320px;
    height: auto;
    margin: 0 auto;
  }
}
.p_recruit .p_recruit-about .p_recruit-message__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_recruit .p_recruit-message__btn {
  margin-top: 46px;
}
@media screen and (max-width: 860px) {
  .p_recruit .p_recruit-message__btn {
    margin-top: 20px;
  }
}
.p_recruit .p_recruit-message__btn a {
  width: 240px;
  height: 47px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 30px;
  border: 1px solid #D2D2D2;
  background: #1DD8A7;
  color: #FFF;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  /* 28.8px */
  letter-spacing: 0.8px;
}
@media screen and ( max-width: 768px ) {
  .p_recruit .p_recruit-message__btn a {
    margin: 0 auto;
  }
}
.p_recruit .p_recruit-welfare__card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and ( max-width: 768px ) {
  .p_recruit .p_recruit-welfare__card {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p_recruit .p_recruit-welfare__card .p_recruit-welfare__item {
  width: calc(33.33% - 26.67px);
  padding: 24px 20px;
  background: #FFF;
  min-width: 320px;
  max-width: 368px;
}
.p_recruit .p_recruit-welfare__card .p_recruit-welfare__item .p_recruit-welfare__item-img {
  width: 241px;
  height: auto;
  margin: 0 auto 24px;
}
.p_recruit .p_recruit-welfare__card .p_recruit-welfare__item .p_recruit-welfare__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_recruit .p_recruit-welfare__card .p_recruit-welfare__item .p_recruit-welfare__item-title {
  margin-bottom: 4px;
}
.p_recruit .p_recruit-welfare__card .p_recruit-welfare__item .p_recruit-welfare__item-title h3 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  /* 32.4px */
}
.p_recruit .p_recruit-welfare__card .p_recruit-welfare__item .p_recruit-welfare__item-lead p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 25.2px */
}

.p_lineup-point-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 901px;
}
@media screen and ( max-width: 768px ) {
  .p_lineup-point-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p_lineup-point-item + .p_lineup-point-item {
  margin-top: 50px;
}
.p_lineup-point-item:nth-child(even) {
  margin-left: auto;
}

.p_lineup-point-item__img {
  width: 329px;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
}

.p_lineup-point-item__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p_lineup-point-item__text h3 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 26.4px */
  letter-spacing: 2.2px;
  margin-bottom: 24px;
}
@media screen and ( max-width: 768px ) {
  .p_lineup-point-item__text h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.p_lineup-point-item__text p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
}
@media screen and ( max-width: 768px ) {
  .p_lineup-point-item__text p {
    font-size: 15px;
  }
}

.p_lineup-info-map-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and ( max-width: 768px ) {
  .p_lineup-info-map-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .p_lineup-info-map-row .p_lineup-info-map {
    display: none;
  }
  .p_lineup-info-map-row[data-sp-region=tokyo] .p_lineup-info-map[data-region=tokyo] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .p_lineup-info-map-row[data-sp-region=kanagawa] .p_lineup-info-map[data-region=kanagawa] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.p_lineup-info-map {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 calc(50% - 10px);
      -ms-flex: 1 1 calc(50% - 10px);
          flex: 1 1 calc(50% - 10px);
  min-width: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p_lineup-info-map-row .p_lineup-info-map + .p_lineup-info-map {
  margin-top: 0;
}

.p_lineup-info-map__img {
  width: 603px;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 1265px) {
  .p_lineup-info-map__img {
    display: none;
  }
}
.p_lineup-info-map__img img {
  width: 100%;
  height: auto;
}

.p_lineup-info-map__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 16px 20px;
  max-height: 476px;
  overflow-y: scroll;
}

.p_lineup-info-map__list--by-ward {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  min-height: 476px;
  display: block;
  padding: 0;
  max-height: 476px;
  max-width: 449px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.p_lineup-info-map__list--by-ward::-webkit-scrollbar {
  width: 6px;
}
.p_lineup-info-map__list--by-ward::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.p_lineup-info-map__ward {
  margin-bottom: 20px;
  padding: 16px 16px 25px;
  border-bottom: 1px dashed #222;
}
.p_lineup-info-map__ward:last-child {
  margin-bottom: 0;
}

.p_lineup-info-map__ward-name {
  color: #222;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}
@media screen and ( max-width: 768px ) {
  .p_lineup-info-map__ward-name {
    font-size: 16px;
  }
}

.p_lineup-info-map__ward-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p_lineup-info-map__ward-list li {
  margin-bottom: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.p_lineup-info-map__ward-list li span {
  border-radius: 14px;
  background: #1dd8a7;
  width: 8px;
  height: 8px;
  display: block;
}
.p_lineup-info-map__ward-list a {
  color: #222;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}
.p_lineup-info-map__ward-list a:hover {
  opacity: 0.7;
}
@media screen and ( max-width: 768px ) {
  .p_lineup-info-map__ward-list a {
    font-size: 14px;
  }
}

.p_lineup-info-map__item {
  width: 201px;
}
@media screen and ( max-width: 768px ) {
  .p_lineup-info-map__item {
    width: 158px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
.p_lineup-info-map__item .p_lineup-info-map__item-img {
  background-color: #fff;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  margin-bottom: 11px;
}
.p_lineup-info-map__item .p_lineup-info-map__item-img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.p_lineup-info-map__item .p_lineup-info-map__item-text h3 {
  color: #222;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and ( max-width: 768px ) {
  .p_lineup-info-map__item .p_lineup-info-map__item-text h3 {
    font-size: 14px;
  }
}
.p_lineup-info-map__item .p_lineup-info-map__item-text h3::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: #1dd8a7;
  border-radius: 50%;
}
@media screen and ( max-width: 768px ) {
  .p_lineup-info-map__item .p_lineup-info-map__item-text h3::before {
    width: 8px;
    height: 8px;
  }
}

.p_lineup-info-map__result-name {
  margin-bottom: 24px;
}
.p_lineup-info-map__result-name p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 24px */
}

.p_lineup-info-map__number {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background: #1dd8a7;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  cursor: default;
}

.p_lineup-info-map__number-adachi {
  top: 104px;
  left: 386px;
}

.p_lineup-info-map__number-arakawa {
  top: 177px;
  left: 368px;
}

.p_lineup-info-map__number-taito {
  top: 226px;
  left: 369px;
}

.p_lineup-info-map__number-chuo {
  top: 291px;
  left: 360px;
}

.p_lineup-info-map__number-katsushika {
  top: 162px;
  left: 478px;
}

.p_lineup-info-map__number-sumida {
  top: 221px;
  left: 427px;
}

.p_lineup-info-map__number-koto {
  top: 303px;
  left: 424px;
}

.p_lineup-info-map__number-bunkyo {
  top: 221px;
  left: 310px;
}

.p_lineup-info-map__number-chiyoda {
  top: 274px;
  left: 319px;
}

.p_lineup-info-map__number-kita {
  top: 141px;
  left: 286px;
}

.p_lineup-info-map__number-toshima {
  top: 200px;
  left: 252px;
}

.p_lineup-info-map__number-itabashi {
  top: 124px;
  left: 208px;
}

.p_lineup-info-map__number-shinjuku {
  top: 254px;
  left: 251px;
}

.p_lineup-info-map__number-nerima {
  top: 153px;
  left: 109px;
}

.p_lineup-info-map__number-nakano {
  top: 232px;
  left: 174px;
}

.p_lineup-info-map__number-suginami {
  top: 263px;
  left: 119px;
}

.p_lineup-info-map__number-shibuya {
  top: 308px;
  left: 224px;
}

.p_lineup-info-map__number-meguro {
  top: 385px;
  left: 227px;
}

.p_lineup-info-map__number-setagaya {
  top: 364px;
  left: 129px;
}

.p_lineup-info-map__number-minato {
  top: 346px;
  left: 298px;
}

.p_lineup-info-map__number-shinagawa {
  top: 425px;
  left: 283px;
}

.p_lineup-info-map__number-ota {
  top: 494px;
  left: 250px;
}

.p_lineup-info-map__number-edogawa {
  top: 264px;
  left: 515px;
}

.p_lineup-info-map__number-kanagawa-naka {
  top: 406px;
  left: 187px;
}

.p_lineup-info-map__number-kanagawa-tsurumi {
  top: 253px;
  left: 212px;
}

.p_lineup-info-map__number-kanagawa-kanagawa {
  top: 304px;
  left: 140px;
}

.p_lineup-info-map__number-kanagawa-nishi {
  top: 350px;
  left: 127px;
}

.p_lineup-info-map__number-kanagawa-minami {
  top: 402px;
  left: 101px;
}

.p_lineup-info-map__number-kanagawa-tsuzuki {
  top: 191px;
  left: 64px;
}

.p_lineup-info-map__number-kanagawa-kohoku {
  top: 212px;
  left: 134px;
}

.p_lineup-info-map__number-kanagawa-aoba {
  top: 197px;
  left: 194px;
}

.p_lineup-info-map__number-kanagawa-aso {
  top: 110px;
  left: 154px;
}

.p_lineup-info-map__number-kanagawa-miyamae {
  top: 113px;
  left: 74px;
}

.p_lineup-info-map__number-kanagawa-takatsu {
  top: 78px;
  left: 122px;
}

.p_lineup-info-map__number-kanagawa-nakahara {
  top: 126px;
  left: 182px;
}

.p_lineup-info-map__number-kanagawa-saiwai {
  top: 184px;
  left: 224px;
}

.p_lineup-info-map__number-kanagawa-kawasaki {
  top: 254px;
  left: 299px;
}

.p_lineup-case-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 63px;
}
@media screen and (max-width: 830px) {
  .p_lineup-case-list {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

.p_lineup-case-item {
  width: 368px;
}
@media screen and (max-width: 830px) {
  .p_lineup-case-item {
    width: 270px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}

.p_lineup-case-item__title h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  position: relative;
  gap: 8px;
  margin-bottom: 4px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 830px) {
  .p_lineup-case-item__title h3 {
    font-size: 16px;
  }
}
.p_lineup-case-item__title h3::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #1dd8a7;
  border-radius: 50%;
}
@media screen and (max-width: 830px) {
  .p_lineup-case-item__title h3::before {
    width: 8px;
    height: 8px;
  }
}

.p_lineup-case-item__access2 {
  margin-bottom: 24px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  height: 75.61px;
}
.p_lineup-case-item__access2::before {
  content: "";
  display: block;
  width: 13px;
  height: 18px;
  background: url(../img/lineup-access-icon.webp) no-repeat center center/contain;
  top: 0;
  left: 0;
}
.p_lineup-case-item__access2 p {
  color: #464646;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
}

.p_lineup-case-item__img {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
}
.p_lineup-case-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p_lineup-slider {
  margin-top: 48px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.p_lineup-slider__track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: lineup-slider-linear 40s linear infinite;
          animation: lineup-slider-linear 40s linear infinite;
}

.p_lineup-slider__set {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.p_lineup-slider__item {
  width: 320px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p_lineup-slider__item img {
  width: 320px;
  height: 240px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes lineup-slider-linear {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes lineup-slider-linear {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p_lineup-info-sp-img {
  display: none;
  margin-bottom: 24px;
  overflow: hidden;
}
@media screen and ( max-width: 768px ) {
  .p_lineup-info-sp-img {
    display: block;
    height: 350px;
  }
}

/* SP: PCの .p_lineup-info-map__img をクローン表示するため、ここでは非表示にしない */
.p_lineup-info-sp-img__map {
  position: relative;
  width: 100%;
  overflow: visible;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and ( max-width: 768px ) {
  .p_lineup-info-sp-img__map {
    -webkit-transform: scale(0.55);
            transform: scale(0.55);
    -webkit-transform-origin: top center;
            transform-origin: top center;
  }
}
.p_lineup-info-sp-img__map {
  /* クローンされた .p_lineup-info-map__img はSPでも表示 */
}
.p_lineup-info-sp-img__map .p_lineup-info-map__img {
  display: block;
}
.p_lineup-info-sp-img__map {
  /* 東京: PCと同じ603px */
}
.p_lineup-info-sp-img__map .p_lineup-info-map__img[data-region=tokyo] {
  width: 603px;
}
.p_lineup-info-sp-img__map .p_lineup-info-map__img[data-region=tokyo] img {
  width: 100%;
  max-width: 603px;
  height: auto;
  display: block;
}
.p_lineup-info-sp-img__map {
  /* 神奈川: PCと同じ421pxでピン位置を合わせる */
}
.p_lineup-info-sp-img__map .p_lineup-info-map__img[data-region=kanagawa] {
  width: 421px;
  height: 619px;
  padding-top: 40px;
}
@media screen and ( max-width: 768px ) {
  .p_lineup-info-sp-img__map .p_lineup-info-map__img[data-region=kanagawa] {
    margin-top: 60px;
  }
}
.p_lineup-info-sp-img__map .p_lineup-info-map__img[data-region=kanagawa] img {
  width: 100%;
  max-width: 421px;
  height: auto;
  display: block;
}

.p_lineup-info-map__select {
  position: relative;
  margin-bottom: 40px;
}
@media screen and ( min-width: 1266px ) {
  .p_lineup-info-map__select {
    display: none;
  }
}
.p_lineup-info-map__select::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: url(../img/select-arrow.svg) no-repeat center center;
  position: absolute;
  right: 16px;
}
.p_lineup-info-map__select select {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #fff;
  padding: 0 16px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  display: block;
}
.p_lineup-info-map__select select + select {
  margin-top: 12px;
}

.p_lineup-info-map--kanagawa {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p_lineup-info-map--kanagawa .p_lineup-info-map__img {
  width: 421px;
  height: 619px;
  padding-top: 40px;
}
.p_lineup-info-map--kanagawa .p_lineup-info-map__list {
  width: 100%;
}

.p_lineup-info-map__list-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-bottom: 14px;
  border-bottom: 1px solid #222;
  max-width: 449px;
}
@media screen and (max-width: 1265px) {
  .p_lineup-info-map__list-title {
    display: none;
  }
}
.p_lineup-info-map__list-title p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 19.2px */
}

.p_lineup-case-list-text {
  border: 4px solid #1dd8a7;
  padding: 4px 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.p_lineup-case-list-text p {
  color: #222;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  /* 44px */
  letter-spacing: 2.6px;
}
@media screen and ( max-width: 768px ) {
  .p_lineup-case-list-text p {
    font-size: 16px;
    line-height: 160%;
  }
}
.p_lineup-case-list-text p span {
  color: #1dd8a7;
}

.p_support .p_support-oss-content {
  border-radius: 24px;
  border: 1px solid #f8f9fa;
  background: #fff;
  -webkit-box-shadow: 0 8px 16px 0 rgba(34, 34, 34, 0.1);
          box-shadow: 0 8px 16px 0 rgba(34, 34, 34, 0.1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 52px 50px 52px 30px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.p_support .p_support-oss-content .p_support-oss__img {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p_support .p_support-oss-content .p_support-oss__slider-wrapper {
  position: relative;
  max-width: 581px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p_support .p_support-oss-content .p_support-oss__slider {
  height: 100%;
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p_support .p_support-oss-content .p_support-oss__slider-item {
  max-width: 581px;
  padding: 0 62px;
  background: #f8f9fa;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-oss-content .p_support-oss__slider-item {
    gap: 16px;
  }
}
.p_support .p_support-oss-content .p_support-oss__slider-item.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}
.p_support .p_support-oss-content .p_support-oss__slider-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
  color: #464646;
}
.p_support .p_support-oss-content .p_support-oss__slider-nav:hover {
  background: #fff;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1);
}
.p_support .p_support-oss-content .p_support-oss__slider-nav:active {
  -webkit-transform: translateY(-50%) scale(0.95);
          transform: translateY(-50%) scale(0.95);
}
.p_support .p_support-oss-content .p_support-oss__slider-nav--prev {
  left: -18px;
}
.p_support .p_support-oss-content .p_support-oss__slider-nav--next {
  right: -18px;
}
@media (max-width: 768px) {
  .p_support .p_support-oss-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 20px;
  }
  .p_support .p_support-oss-content .p_support-oss__slider-wrapper {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) and ( max-width: 768px ) {
  .p_support .p_support-oss-content .p_support-oss__slider-wrapper {
    margin-top: 0;
    height: 321.63px;
  }
}
@media (max-width: 768px) {
  .p_support .p_support-oss-content .p_support-oss__slider-item {
    max-width: 100%;
    padding: 30px 40px;
  }
  .p_support .p_support-oss-content .p_support-oss__slider-nav {
    width: 40px;
    height: 40px;
  }
  .p_support .p_support-oss-content .p_support-oss__slider-nav--prev {
    left: -10px;
  }
  .p_support .p_support-oss-content .p_support-oss__slider-nav--next {
    right: -10px;
  }
}
.p_support .p_support-oss__slider-title h3 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  /* 61.6px */
  letter-spacing: 3.64px;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-oss__slider-title h3 {
    font-size: 20px;
    letter-spacing: 2px;
  }
}
.p_support .p_support-oss__slider-lead p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-oss__slider-lead p {
    font-size: 14px;
  }
}
.p_support .p_support-management-plan {
  border-radius: 24px;
  border: 1px solid #f8f9fa;
  background: #fff;
  -webkit-box-shadow: 0 8px 16px 0 rgba(34, 34, 34, 0.1);
          box-shadow: 0 8px 16px 0 rgba(34, 34, 34, 0.1);
  padding: 33px 30px;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan {
    padding: 23px 16px;
  }
}
.p_support .p_support-management-plan__block {
  border-radius: 24px;
  background: #f8f9fa;
  padding: 58px 50px 55px;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__block {
    padding: 30px 5%;
  }
}
.p_support .p_support-management-plan__block + .p_support-management-plan__block {
  margin-top: 52px;
}
.p_support .p_support-management-plan__title {
  margin-bottom: 64px;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__title {
    margin-bottom: 30px;
  }
}
.p_support .p_support-management-plan__title p {
  color: #1dd8a7;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 33px */
  letter-spacing: 3.3px;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__title p {
    font-size: 18px;
  }
}
.p_support .p_support-management-plan__title h3 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 33.6px */
  letter-spacing: 3.64px;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__title h3 {
    font-size: 20px;
  }
}
.p_support .p_support-management-plan__media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 27.46px;
  margin-bottom: 64px;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p_support .p_support-management-plan__media .p_support-management-plan__img {
  width: 447px;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__media .p_support-management-plan__img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}
.p_support .p_support-management-plan__media .p_support-management-plan__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__media .p_support-management-plan__text {
    gap: 16px;
  }
}
.p_support .p_support-management-plan__media .p_support-management-plan__text span {
  color: #4caf18;
  font-family: "Zen Kaku Gothic New";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 25.2px */
  letter-spacing: 1.8px;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__media .p_support-management-plan__text span {
    font-size: 16px;
  }
}
.p_support .p_support-management-plan__media .p_support-management-plan__text h4 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  /* 39.6px */
  letter-spacing: 2.2px;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__media .p_support-management-plan__text h4 {
    font-size: 20px;
  }
}
.p_support .p_support-management-plan__media .p_support-management-plan__text p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__media .p_support-management-plan__text p {
    font-size: 15px;
  }
}
.p_support .p_support-management-plan__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 24px;
  background: #fff;
  padding: 48px 45px 36px;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__box {
    padding: 40px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p_support .p_support-management-plan__box span {
  background: #4caf18;
  width: 526.75px;
  padding: 3.87px 0;
  color: #fff;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  position: absolute;
  top: -21.37px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__box span {
    width: 90%;
    font-size: 16px;
  }
}
.p_support .p_support-management-plan__box .p_support-management-plan__box-img {
  width: 613px;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__box .p_support-management-plan__box-img {
    width: 100%;
  }
}
.p_support .p_support-management-plan__box .p_support-management-plan__box-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p_support .p_support-management-plan__box .p_support-management-plan__box-text p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__box .p_support-management-plan__box-text p {
    font-size: 15px;
  }
}
.p_support .p_lineup-point-item__text p {
  font-weight: 500;
}
.p_support .p_support-otherpoint {
  margin-bottom: 57px;
}
.p_support .p_support-otherpoint h2 {
  line-height: 120%;
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-otherpoint h2 {
    font-size: 24px;
  }
}
.p_support .p_support-otherpoint h2 small {
  font-size: 24px;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-otherpoint h2 small {
    font-size: 16px;
  }
}
.p_support .p_otherpoint-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 1072px) {
  .p_support .p_otherpoint-card {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}
.p_support .p_otherpoint-card .p_otherpoint-card__item {
  max-width: 329px;
  min-width: 280px;
}
.p_support .p_otherpoint-card .p_otherpoint-card__item .p_otherpoint-card__item-img {
  margin-bottom: 40px;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_otherpoint-card .p_otherpoint-card__item .p_otherpoint-card__item-img {
    margin-bottom: 20px;
  }
}
.p_support .p_otherpoint-card .p_otherpoint-card__item .p_otherpoint-card__item-title {
  color: #222;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 33.6px */
  margin-bottom: 21px;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_otherpoint-card .p_otherpoint-card__item .p_otherpoint-card__item-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.p_support .p_otherpoint-card .p_otherpoint-card__item .p_otherpoint-card__item-lead {
  color: #222;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  /* 28.8px */
}
@media screen and ( max-width: 768px ) {
  .p_support .p_otherpoint-card .p_otherpoint-card__item .p_otherpoint-card__item-lead {
    font-size: 15px;
  }
}

.p_support .p_support-management-plan__block.__block2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(40px, 35.8504672897px + 0.0112149533 * 100vw, 52px);
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__block.__block2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p_support .p_support-management-plan__block.__block2 .title h3 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: clamp(22px, 19.9252336449px + 0.0056074766 * 100vw, 28px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
  letter-spacing: 3.64px;
}
.p_support .p_support-management-plan__block.__block2 .data-block__number .text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
  font-family: "Zen Kaku Gothic New";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__block.__block2 .data-block__number .text {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 4px 0;
  }
}
.p_support .p_support-management-plan__block.__block2 .data-block__number .data-block__label {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  white-space: nowrap;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__block.__block2 .data-block__number .data-block__label {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    width: 100%;
    font-size: 24px;
  }
}
.p_support .p_support-management-plan__block.__block2 .data-block__number .text .number {
  display: inline-block;
  min-width: 3.5ch; /* 99.8 の幅を確保してカウントアップ時のガタつきを防止 */
  font-variant-numeric: tabular-nums;
  text-align: right;
  color: #1dd8a7;
  font-family: Inter;
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 144px */
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__block.__block2 .data-block__number .text .number {
    font-size: 72px;
    min-width: 3.2ch;
  }
}
.p_support .p_support-management-plan__block.__block2 .data-block__number .data-block__percent {
  color: #1dd8a7;
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  vertical-align: baseline;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__block.__block2 .data-block__number .data-block__percent {
    font-size: 28px;
  }
}
.p_support .p_support-management-plan__block.__block2 .data-block__number .period {
  margin-top: -5%;
  text-align: right;
  font-size: 14px;
  margin-bottom: 25px;
}
@media screen and ( max-width: 768px ) {
  .p_support .p_support-management-plan__block.__block2 .data-block__number .period {
    font-size: 12px;
    text-align: left;
  }
}
.p_support .p_support-management-plan__block.__block2 .strength-block p.text {
  margin-bottom: clamp(24px, 18.4672897196px + 0.014953271 * 100vw, 40px);
}
.p_support .p_support-management-plan__block.__block2 .strength-block p.text:last-child {
  margin-bottom: 0;
}

.p_threeminutes .p_threeminutes-block + .p_threeminutes-block {
  margin-top: 110px;
}
@media screen and ( max-width: 768px ) {
  .p_threeminutes .p_threeminutes-block + .p_threeminutes-block {
    margin-top: 40px;
  }
}
.p_threeminutes .p_threeminutes-block__media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 95px;
  padding: 55px 62px 55px 40px;
  border-radius: 24px;
  background: #fff;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and ( max-width: 768px ) {
  .p_threeminutes .p_threeminutes-block__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 55px 30px;
    gap: 40px;
  }
}
.p_threeminutes .p_threeminutes-block__media .p_threeminutes-block__media-img {
  max-width: 473px;
  width: 100%;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p_threeminutes .p_threeminutes-block__media .p_threeminutes-block__media-img svg {
  width: 100%;
  height: auto;
  max-height: 100%;
}
@media screen and ( max-width: 768px ) {
  .p_threeminutes .p_threeminutes-block__media .p_threeminutes-block__media-img {
    aspect-ratio: initial;
    height: auto;
    min-height: 200px;
  }
  .p_threeminutes .p_threeminutes-block__media .p_threeminutes-block__media-img svg {
    width: 100%;
    height: auto;
  }
}
.p_threeminutes .p_threeminutes-block__media .p_threeminutes-block__media-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
.p_threeminutes .p_threeminutes-block__media .p_threeminutes-block__media-text h3 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 26.4px */
  letter-spacing: 2.2px;
  margin-bottom: 24px;
}
@media screen and ( max-width: 768px ) {
  .p_threeminutes .p_threeminutes-block__media .p_threeminutes-block__media-text h3 {
    font-size: 18px;
  }
}
.p_threeminutes .p_threeminutes-block__media .p_threeminutes-block__media-text p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
}

.p_faq .p_faq-block {
  border-radius: 24px;
  background: #fff;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.25);
  padding: 72px 45px 71px;
  position: relative;
}
@media screen and ( max-width: 768px ) {
  .p_faq .p_faq-block {
    padding: 40px 18px;
  }
}
.p_faq .p_faq-block + .p_faq-block {
  margin-top: 4px;
}
.p_faq .p_faq-block:nth-of-type(1) .p_faq-block__img {
  max-width: 890px;
  margin-top: 46px;
}
.p_faq .p_faq-block:nth-of-type(5) .p_faq-block__img, .p_faq .p_faq-block:nth-of-type(7) .p_faq-block__img {
  max-width: 585px;
}
.p_faq .p_faq-block:nth-of-type(7) .p_faq-block__flex {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p_faq .p_faq-block:nth-of-type(8) .p_faq-block__img {
  max-width: 523px;
  margin-top: 24px;
  margin-bottom: 30px;
}
.p_faq .p_faq-block:nth-of-type(9) .p_faq-block__img {
  max-width: 578px;
  margin-top: 18px;
}
.p_faq .p_faq-block:nth-of-type(11) .p_faq-block__img {
  max-width: 582px;
  margin-top: 24px;
}
.p_faq .p_faq-block:nth-of-type(13) .p_faq-block__img {
  max-width: 578px;
  margin-top: 24px;
}
.p_faq .p_faq-block .p_faq-block__num {
  position: absolute;
  top: -48px;
}
@media screen and ( max-width: 768px ) {
  .p_faq .p_faq-block .p_faq-block__num {
    top: -36px;
    left: 18px;
  }
}
.p_faq .p_faq-block .p_faq-block__num p {
  color: #1dd8a7;
  font-family: Inter;
  font-size: 64px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
  /* 96px */
}
@media screen and ( max-width: 768px ) {
  .p_faq .p_faq-block .p_faq-block__num p {
    font-size: 46px;
  }
}
.p_faq .p_faq-block .p_faq-block__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p_faq .p_faq-block .p_faq-block__text strong {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  /* 39.6px */
  letter-spacing: 2.2px;
  margin-bottom: 24px;
  display: block;
}
@media screen and ( max-width: 768px ) {
  .p_faq .p_faq-block .p_faq-block__text strong {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.p_faq .p_faq-block .p_faq-block__text p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
}
@media screen and ( max-width: 768px ) {
  .p_faq .p_faq-block .p_faq-block__text p {
    font-size: 15px;
  }
}
.p_faq .p_faq-block__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and ( max-width: 768px ) {
  .p_faq .p_faq-block__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p_faq-block-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 52px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 59px;
}
@media screen and ( max-width: 768px ) {
  .p_faq-block-card {
    gap: 32px;
    margin-top: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p_faq-block-card__item {
  width: calc(50% - 26px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media screen and ( max-width: 768px ) {
  .p_faq-block-card__item {
    width: 100%;
    gap: 20px;
  }
}

.p_faq-block-card__item-img {
  width: 112px;
}
@media screen and ( max-width: 768px ) {
  .p_faq-block-card__item-img {
    width: 64px;
  }
}

.p_faq-block-card__item-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p_faq-block-card__item-text p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
}
@media screen and ( max-width: 768px ) {
  .p_faq-block-card__item-text p {
    font-size: 14px;
  }
}

.p_faq-block__desc {
  margin-top: 55px;
}
.p_faq-block__desc span {
  color: #222;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 20px;
  display: block;
}
@media screen and ( max-width: 768px ) {
  .p_faq-block__desc span {
    font-size: 20px;
  }
}
.p_faq-block__desc p {
  color: #222;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  /* 28.8px */
}
@media screen and ( max-width: 768px ) {
  .p_faq-block__desc p {
    font-size: 14px;
  }
}

.p_owner .p_owner-step {
  border-radius: 24px;
  background: #FFF;
  padding: 63px 82px 73px;
}
@media screen and ( max-width: 768px ) {
  .p_owner .p_owner-step {
    padding: 40px 20px;
  }
}
.p_owner .p_owner-step-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 53px;
}
@media screen and ( max-width: 768px ) {
  .p_owner .p_owner-step-item {
    gap: 16px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p_owner .p_owner-step-item + .p_owner-step-item {
  margin-top: 64px;
}
.p_owner .p_owner-step-item .p_owner-step-item__dots {
  width: 31px;
  height: 31px;
  background-color: #1DD8A7;
  border-radius: 50%;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-top: 0;
  --line-height: 64px;
}
@media screen and ( max-width: 768px ) {
  .p_owner .p_owner-step-item .p_owner-step-item__dots {
    width: 16px;
    height: 16px;
    --line-height: 32px;
    margin-top: 22px;
  }
}
.p_owner .p_owner-step-item .p_owner-step-item__dots::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: var(--line-height);
  background-color: #1DD8A7;
}
.p_owner .p_owner-step-item:last-child .p_owner-step-item__dots::after {
  display: none;
}
.p_owner .p_owner-step-item__img {
  width: 200px;
  height: 200px;
}
@media screen and ( max-width: 768px ) {
  .p_owner .p_owner-step-item__img {
    width: 60px;
    height: 60px;
  }
}
.p_owner .p_owner-step-item__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and ( max-width: 768px ) {
  .p_owner .p_owner-step-item__text {
    margin-top: 14px;
  }
}
.p_owner .p_owner-step-item__text h3 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  /* 39.6px */
  letter-spacing: 2.2px;
  margin-bottom: 24px;
}
@media screen and ( max-width: 768px ) {
  .p_owner .p_owner-step-item__text h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.p_owner .p_owner-step-item__text p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
}
@media screen and ( max-width: 768px ) {
  .p_owner .p_owner-step-item__text p {
    font-size: 14px;
  }
}

.p_service .title {
  margin-bottom: 68px;
}
@media screen and ( max-width: 768px ) {
  .p_service .title {
    margin-bottom: 40px;
  }
}
.p_service .p_service-block {
  padding: 52px 40px;
  border-radius: 24px;
  background: #FFF;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
}
@media screen and ( max-width: 768px ) {
  .p_service .p_service-block {
    padding: 40px 14px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.p_service .p_service-block + .p_service-block {
  margin-top: 82px;
}
.p_service .p_service-block p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  margin-bottom: 40px;
}
@media screen and ( max-width: 768px ) {
  .p_service .p_service-block p {
    font-size: 15px;
  }
}
.p_service .p_service-block h4 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  /* 39.6px */
  letter-spacing: 2.2px;
  margin-bottom: 14px;
}
@media screen and ( max-width: 768px ) {
  .p_service .p_service-block h4 {
    font-size: 20px;
  }
}
.p_service .p_service-block .p_service-block__en {
  position: absolute;
  top: -16px;
}
@media screen and ( max-width: 768px ) {
  .p_service .p_service-block .p_service-block__en {
    top: auto;
    position: relative;
  }
}
.p_service .p_service-block .p_service-block__en p {
  color: #1DD8A7;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 33px */
  letter-spacing: 3.3px;
}
@media screen and ( max-width: 768px ) {
  .p_service .p_service-block .p_service-block__en p {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.p_service .p_service-block__title {
  margin-bottom: 22px;
}
.p_service .p_service-block__title span {
  color: #4CAF18;
  font-family: "Zen Kaku Gothic New";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 9px;
  display: block;
}
@media screen and ( max-width: 768px ) {
  .p_service .p_service-block__title span {
    font-size: 15px;
  }
}
.p_service .p_service-block__title h3 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  /* 39.6px */
  letter-spacing: 2.2px;
}
@media screen and ( max-width: 768px ) {
  .p_service .p_service-block__title h3 {
    font-size: 20px;
  }
}
.p_service .p_service-block__content ul li {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  background: #F8F9FA;
  padding: 10px 15px;
}
@media screen and ( max-width: 768px ) {
  .p_service .p_service-block__content ul li {
    font-size: 14px;
  }
}
.p_service .p_service-block__content ul li + li {
  margin-top: 10px;
}
.p_service .p_service-block__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p_service .p_service-block__info {
  max-width: 480px;
}
.p_service .p_service-block__info-img {
  margin-bottom: 40px;
}
@media screen and ( max-width: 768px ) {
  .p_service .p_service-block__info-features p {
    margin-bottom: 0;
  }
}
.p_service .p_service-message {
  padding: 190px 0 0;
}
@media screen and ( max-width: 768px ) {
  .p_service .p_service-message {
    padding-top: 60px;
  }
}
.p_service .p_service-message .p_service-message__text strong {
  color: #222;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  /* 61.6px */
  letter-spacing: 3.64px;
  display: block;
  margin-bottom: 59px;
}
@media screen and ( max-width: 768px ) {
  .p_service .p_service-message .p_service-message__text strong {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.p_service .p_service-message .p_service-message__img {
  mix-blend-mode: multiply;
}
.p_service .page-contents {
  padding-bottom: 0;
}

.p_sitemap .page-contents::after {
  content: none;
  display: none;
}
.p_sitemap .p_service-message {
  padding: 80px 0 0;
  margin-top: 0;
}
@media screen and ( max-width: 768px ) {
  .p_sitemap .p_service-message {
    padding-top: 50px;
  }
}
.p_sitemap .p_service-message .p_service-message__text strong {
  color: #222;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  letter-spacing: 3.64px;
  display: block;
  margin-bottom: 59px;
}
@media screen and ( max-width: 768px ) {
  .p_sitemap .p_service-message .p_service-message__text strong {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.p_sitemap .p_service-message .p_service-message__img {
  mix-blend-mode: multiply;
  display: block;
  width: 100%;
}
.p_sitemap .p_sitemap-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 48px 40px;
  padding-bottom: 80px;
}
@media screen and ( max-width: 768px ) {
  .p_sitemap .p_sitemap-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 36px;
    padding-bottom: 50px;
  }
}
.p_sitemap .p_sitemap-section {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
}
@media screen and ( max-width: 768px ) {
  .p_sitemap .p_sitemap-section {
    min-width: auto;
  }
}
.p_sitemap .p_sitemap-section__title {
  color: #1dd8a7;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
@media screen and ( max-width: 768px ) {
  .p_sitemap .p_sitemap-section__title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.p_sitemap .p_sitemap-section__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.p_sitemap .p_sitemap-section__list li {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1.6px;
}
@media screen and ( max-width: 768px ) {
  .p_sitemap .p_sitemap-section__list li {
    font-size: 14px;
  }
}
.p_sitemap .p_sitemap-section__list li a:hover {
  opacity: 0.7;
}

.p_interview-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: clamp(34px, 30.5420560748px + 0.0093457944 * 100vw, 44px) clamp(38px, 34.5420560748px + 0.0093457944 * 100vw, 48px);
}

.p_interview-item {
  width: calc(33.3333333333% - 32px);
  height: 371px;
  min-width: 337px;
}
@media screen and ( max-width: 768px ) {
  .p_interview-item {
    max-width: 337px;
    min-width: auto;
    width: 100%;
    height: auto;
  }
}
.p_interview-item .p_interview-item__img {
  aspect-ratio: 368/200;
}
.p_interview-item .p_interview-item__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.p_interview-item .p_interview-item__text {
  padding: 24px 12px 0;
  background: #fff;
}
@media (max-width: 1030px) {
  .p_interview-item .p_interview-item__text br {
    display: none;
  }
}
.p_interview-item .p_interview-item__text span {
  color: #1DD8A7;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  letter-spacing: 2.4px;
  margin-bottom: 4px;
  display: block;
}
@media screen and ( max-width: 768px ) {
  .p_interview-item .p_interview-item__text span {
    font-size: 14px;
  }
}
.p_interview-item .p_interview-item__text h3 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and ( max-width: 768px ) {
  .p_interview-item .p_interview-item__text h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.p_interview-item .p_interview-item__text .p_interview-item__tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  padding: 6px 0;
}
.p_interview-item .p_interview-item__text .p_interview-item__tag li {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  padding: 0 10px;
  background: #F1F1F1;
}
@media screen and ( max-width: 768px ) {
  .p_interview-item .p_interview-item__text .p_interview-item__tag li {
    font-size: 14px;
  }
}

.single-interview {
  counter-reset: interview-section;
}
.single-interview .wp-block-post-terms__separator {
  display: none;
}
.single-interview .wp-block-post-title {
  white-space: pre-line;
}
.single-interview .p_interview-single__head {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #FFF;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  padding: 64px 0;
  gap: 37px;
  margin-bottom: 98px;
}
@media (max-width: 800px) {
  .single-interview .p_interview-single__head {
    padding: 40px 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 800px) {
  .single-interview .p_interview-single__head .wp-block-group__inner-container {
    width: 100%;
  }
}
.single-interview .p_interview-single__head .p_interview-single__chance p {
  margin-bottom: 0;
}
.single-interview .p_interview-single__head .taxonomy-post_tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
.single-interview .p_interview-single__head .taxonomy-post_tag p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
  background: #F1F1F1;
  padding: 0 10px;
  margin-bottom: 50px;
}
@media (max-width: 800px) {
  .single-interview .p_interview-single__head .taxonomy-post_tag p {
    font-size: 14px;
    margin-bottom: 26px;
  }
}
.single-interview .p_interview-single__head .taxonomy-post_tag p::before {
  content: "#";
}
.single-interview .p_interview-single__head .p_interview-single__flex {
  gap: 37px;
}
@media (max-width: 800px) {
  .single-interview .p_interview-single__head .p_interview-single__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.single-interview .p_interview-single__head .p_interview-single__text {
  gap: 0;
}
.single-interview .p_interview-single__head .wp-block-image {
  width: 510px;
}
@media (max-width: 800px) {
  .single-interview .p_interview-single__head .wp-block-image {
    margin: 0 auto;
    max-width: 510px;
    width: 100%;
  }
}
.single-interview .p_interview-single__head .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
.single-interview .p_interview-single__head h2 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  /* 61.6px */
  letter-spacing: 3.64px;
  margin-bottom: 24px;
  white-space: pre-line;
}
@media (max-width: 800px) {
  .single-interview .p_interview-single__head h2 {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 140%;
  }
}
.single-interview .p_interview-single__head p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  margin-bottom: 26px;
}
@media (max-width: 800px) {
  .single-interview .p_interview-single__head p {
    font-size: 15px;
  }
}
.single-interview .p_interview-single__head h3 {
  color: #1DD8A7;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  line-height: 150%;
  /* 33px */
  letter-spacing: 3.3px;
  margin-bottom: 24px;
}
@media (max-width: 800px) {
  .single-interview .p_interview-single__head h3 {
    font-size: 18px;
    letter-spacing: 2.7px;
    margin-bottom: 16px;
  }
}
.single-interview .p_interview-single__head h3 strong {
  font-weight: 700;
}
.single-interview .p_interview-single__title-sub {
  color: #1DD8A7;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 3.3px;
  counter-increment: interview-section;
}
@media (max-width: 800px) {
  .single-interview .p_interview-single__title-sub {
    font-size: 18px;
    letter-spacing: 2.7px;
  }
}
.single-interview .p_interview-single__title-sub::after {
  content: counter(interview-section, decimal-leading-zero) " ";
}
@media (max-width: 800px) {
  .single-interview .p_interview-single__title-sub {
    font-size: 18px;
  }
}
.single-interview .p_interview-single__title-main {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 28px;
  font-style: normal;
  line-height: 220%;
  /* 61.6px */
  letter-spacing: 3.64px;
  margin-bottom: 24px;
  font-weight: 700;
}
.single-interview .p_interview-single__title-main strong {
  font-weight: 700;
}
@media (max-width: 800px) {
  .single-interview .p_interview-single__title-main {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 140%;
  }
}
.single-interview .p_interview-single__title-lead {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  line-height: 180%;
}
@media (max-width: 800px) {
  .single-interview .p_interview-single__title-lead {
    font-size: 15px;
  }
}
.single-interview .p_interview-single__title-lead {
  /* 28.8px */
}
.single-interview .p_interview-single__title-lead strong {
  font-weight: 700;
}
.single-interview .p_interview-single__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
.single-interview .p_interview-single__content .wp-block-image {
  max-width: 806px;
  max-height: 528px;
  margin: 50px auto 0;
}
@media (max-width: 800px) {
  .single-interview .p_interview-single__content .wp-block-image {
    margin: 20px auto 0;
  }
}
.single-interview .p_interview-single__content .wp-block-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.single-interview .p_interview-single__content .p_interview-single__block + .p_interview-single__block {
  margin-top: 50px;
}

.pagination {
  margin-top: 40px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 800px) {
  .pagination {
    margin-top: 30px;
  }
}
.pagination .page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  color: #222;
  text-decoration: none;
  border: 1px solid #ddd;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 800px) {
  .pagination .page-numbers {
    margin: 0 3px;
    padding: 8px 12px;
    font-size: 14px;
  }
}
.pagination .page-numbers:hover {
  background-color: #1DD8A7;
  color: #fff;
  border-color: #1DD8A7;
}
.pagination .page-numbers.current {
  background-color: #1DD8A7;
  color: #fff;
  border-color: #1DD8A7;
  font-weight: 700;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  font-weight: 700;
  width: 60px;
  font-size: 12px;
  padding: 0;
}
.pagination .dots {
  display: inline-block;
  margin: 0 5px;
  padding: 10px 5px;
  color: #222;
}

.p_single-other {
  background: #F1F1F1;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  padding: 93px 0;
}
@media (max-width: 800px) {
  .p_single-other {
    padding: 40px 0;
  }
}
.p_single-other .inner {
  gap: 0;
}

.p_information .p_information-item__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.p_information .p_information-item__info time {
  color: #1DD8A7;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 16px */
}
@media screen and ( max-width: 768px ) {
  .p_information .p_information-item__info time {
    font-size: 14px;
  }
}
.p_information .p_information-item__info .p_information-item__tag li {
  color: #45A015;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  border-radius: 4px;
  border: 1px dashed #45A015;
  padding: 4px 8px;
}
@media screen and ( max-width: 768px ) {
  .p_information .p_information-item__info .p_information-item__tag li {
    font-size: 13px;
  }
}
.p_information .p_information-item a {
  padding: 0 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #BABABA;
  display: block;
}
.p_information .p_information-item:not(:first-child) {
  padding-top: 24px;
}
.p_information .p_information-item__text {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 24px */
}
@media screen and ( max-width: 768px ) {
  .p_information .p_information-item__text {
    font-size: 16px;
  }
}

.p_information-single h3 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-style: normal;
  line-height: 120%;
  /* 26.4px */
  letter-spacing: 2.2px;
  margin-bottom: 24px;
  font-weight: 700;
}
.p_information-single h3 strong {
  font-weight: 700;
}
.p_information-single p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
  margin-bottom: 24px;
}
.p_information-single .wp-block-image {
  max-width: 600px;
  margin: 0 auto 24px;
}
.p_information-single .p_information-single__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.p_information-single .p_information-single__info .p_information-single__info-date p {
  color: #1DD8A7;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 33px */
}
.p_information-single .p_information-single__info .p_information-single__info-cat p {
  color: #45A015;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px dashed #45A015;
}
.p_information-single .p_information-single__title {
  margin-bottom: 68px;
}
.p_information-single .p_information-single__title h2 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  /* 61.6px */
  letter-spacing: 3.64px;
  padding-bottom: 24px;
  border-bottom: 1px solid #BABABA;
}
.p_information-single .p_information-single__btn {
  margin-top: 100px;
}
.p_information-single .p_information-single__btn a {
  color: #FFF;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  /* 28.8px */
  letter-spacing: 0.8px;
  border-radius: 30px;
  border: 1px solid #D2D2D2;
  background: #1DD8A7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 237px;
  height: 46.8208px;
  margin: 0 auto;
}
.p_information-single .p_information-single__media {
  gap: 32px;
  margin-bottom: 24px;
}
.p_information-single .p_information-single__media-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.p_information-single .p_information-single__media-text p {
  margin-bottom: 0;
}
.p_information-single .p_information-single__media-img {
  width: 398px;
  height: auto;
}
.p_information-single .p_information-single__media-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pagination {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 800px) {
  .pagination {
    margin-top: 40px;
  }
}
.pagination .page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 5px;
  padding: 10px 15px;
  background-color: #fff;
  color: #222;
  text-decoration: none;
  border: 1px solid #ddd;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 800px) {
  .pagination .page-numbers {
    margin: 0 3px;
    padding: 8px 12px;
    font-size: 14px;
  }
}
.pagination .page-numbers:hover {
  background-color: #1DD8A7;
  color: #fff;
  border-color: #1DD8A7;
}
.pagination .page-numbers.current {
  background-color: #1DD8A7;
  color: #fff;
  border-color: #1DD8A7;
  font-weight: 700;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  font-weight: 700;
  padding: 0;
}
.pagination .dots {
  display: inline-block;
  margin: 0 5px;
  padding: 10px 5px;
  color: #222;
}

.p_staff .p_recruit-message__img {
  height: 462px;
}
.p_staff .p_staff-content h3 {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  /* 48.4px */
  letter-spacing: 2.2px;
  margin-bottom: 24px;
}
@media screen and ( max-width: 768px ) {
  .p_staff .p_staff-content h3 {
    font-size: 18px;
  }
}
.p_staff .p_staff-content p {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%;
  /* 35.2px */
}
@media screen and ( max-width: 768px ) {
  .p_staff .p_staff-content p {
    font-size: 15px;
  }
}
.p_staff .p_staff-message {
  padding: 82px 0 94px;
  margin-bottom: 134px;
  background: #fff;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
}
@media screen and ( max-width: 768px ) {
  .p_staff .p_staff-message {
    margin-bottom: 60px;
  }
}
.p_staff .p_staff-message .inner {
  gap: 0;
}
.p_staff .p_staff-message .p_recruit-message__btn a {
  margin: 0 auto;
}
.p_staff .p_staff-message__media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 900px) {
  .p_staff .p_staff-message__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
}
.p_staff .p_staff-message__media .p_staff-message__img {
  max-width: min(480px, 33.3333333333vw);
  height: 420px;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .p_staff .p_staff-message__media .p_staff-message__img {
    margin: 0 auto;
    width: 100%;
    max-width: 420px;
  }
}
.p_staff .p_staff-message__media .p_staff-message__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_staff .p_staff-message__media .p_staff-message__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p_staff .p_staff-message__media .p_staff-message__text .p_staff-message__text-lead {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%;
  /* 35.2px */
}
@media screen and ( max-width: 768px ) {
  .p_staff .p_staff-message__media .p_staff-message__text .p_staff-message__text-lead {
    font-size: 15px;
  }
}
.p_staff .p_single-other {
  margin-bottom: 135px;
}
@media screen and ( max-width: 768px ) {
  .p_staff .p_single-other {
    margin-bottom: 60px;
  }
}
.p_staff .p_single-other .title span {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%;
  margin-top: 0;
  /* 35.2px */
}
@media screen and ( max-width: 768px ) {
  .p_staff .p_single-other .title span {
    font-size: 15px;
  }
}
.p_staff .p_interview-item__text {
  padding: 24px 12px 20px;
}
.p_staff .p_interview-item__text .staff-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.8;
}

.p_about.p_privacy .page-contents:after {
  content: none;
}
.p_about.p_privacy .page-contents p {
  margin-bottom: clamp(24px, 21.2336448598px + 0.0074766355 * 100vw, 32px);
}
.p_about.p_privacy .page-contents p.text-right {
  text-align: right;
}
.p_about.p_privacy .page-contents p:nth-of-type(2) {
  width: 100%;
}
.p_about.p_privacy .page-contents .line li {
  margin-bottom: clamp(24px, 21.2336448598px + 0.0074766355 * 100vw, 32px);
}

.p_404 .page-contents {
  padding: 80px 0 120px;
  min-height: 50vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and ( max-width: 768px ) {
  .p_404 .page-contents {
    padding: 60px 0 80px;
  }
}
.p_404 .p_404__body {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.p_404 .p_404__code {
  font-family: Inter, sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: #1dd8a7;
  margin-bottom: 16px;
}
@media screen and ( max-width: 768px ) {
  .p_404 .p_404__code {
    font-size: 56px;
  }
}
.p_404 .p_404__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
}
@media screen and ( max-width: 768px ) {
  .p_404 .p_404__title {
    font-size: 20px;
  }
}
.p_404 .p_404__lead {
  font-size: 16px;
  color: #222;
  line-height: 1.7;
  margin-bottom: 24px;
}
.p_404 .p_404__countdown {
  font-size: 15px;
  color: #666;
  margin-bottom: 32px;
}
.p_404 .p_404__link {
  margin: 0;
}
.p_404 .p_404__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 240px;
  padding: 16px 32px;
  background: #1dd8a7;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  -webkit-transition: background 0.3s, -webkit-transform 0.2s;
  transition: background 0.3s, -webkit-transform 0.2s;
  transition: background 0.3s, transform 0.2s;
  transition: background 0.3s, transform 0.2s, -webkit-transform 0.2s;
}
.p_404 .p_404__btn:hover {
  background: #18c396;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}/*# sourceMappingURL=style.css.map */