/*　layout */
:root {
  --font-en-poppins: "Poppins", sans-serif;
  --font-en-nimbus: nimbus-sans-extended, sans-serif;
  --font-en-noto: "Noto Sans", sans-serif;
  --font-en-noto-jp: "Noto Sans JP", sans-serif;
  --sp-item: 580px;
}

.l-en-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .l-en-section {
    padding: 70px 0;
  }
}

.l-header--en {
  position: sticky;
  top: 0;
  box-shadow: none;
  left: 0;
  background: #fafafa;
  transition: box-shadow 0.3s ease;
}

.l-header--en.is-sticky {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.l-en-lp section[id] {
  scroll-margin-top: 120px;
}

.l-header--en .l-header__container .globalnav > ul li a.is-active {
  color: #00a3af;
}

@media (max-width: 768px) {
  .l-en-lp section[id] {
    scroll-margin-top: 70px;
  }
}

@media (max-width: 768px) {
  .l-header--en .l-header__container {
    justify-content: center;
  }
}

.l-header--en .l-header__container .l-header__logo {
  width: 154px;
}

.l-header--en .l-header__container .globalnav {
  background: transparent;
}

.l-header--en .l-header__container .globalnav > ul li {
  margin-right: 82px;
}

.l-header--en .l-header__content {
  display: flex;
  gap: 82px;
}

.l-header--en .l-header__btn {
  width: 205px;
  height: 48px;
}
@media (max-width: 992px) {
  .l-header--en .l-header__btn {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .l-header--en .l-header__btn {
    display: none;
  }
}

.l-header__btn .c-btn__text {
  font-size: 20px;
}

.l-header__address {
  color: #434343;
  font-size: 14px;
  cursor: pointer;
  font-weight: 300;
  line-height: 1.1;
  text-align: center;
  margin: 3px 0 0 0;
}

.l-header__address-copy {
  width: 12px;
  height: 12px;
  aspect-ratio: 1/1;
  display: inline-block;
}

.l-header__address {
  cursor: pointer;
  position: relative;
  transition: opacity 0.2s ease;
}

.l-header__address.is-copied::after {
  content: "Copied!";
  position: absolute;
  left: 50%;
  bottom: -3.4rem;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 0.8rem 1rem;
  border-radius: 0.6rem;
  white-space: nowrap;
  z-index: 10;
  animation: copiedFade 1.6s ease forwards;
}

@keyframes copiedFade {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(4px);
  }

  15% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  80% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(4px);
  }
}

.l-footer.l-footer--en {
  background: transparent;
  padding: 0;
  margin-top: 24px;
  display: block;
}
@media (max-width: 1024px) {
  .l-footer.l-footer--en {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .l-footer.l-footer--en {
    margin-top: 10px;
  }
}

.l-footer.l-footer--en .l-footer__inner {
  display: flex;
  justify-content: space-between;
  border-top: 2px solid#e0e0e0;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  gap: 82px;
  padding: 24px 20px 0 20px;
}

@media (max-width: 992px) {
  .l-footer.l-footer--en .l-footer__inner {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .l-footer.l-footer--en .l-footer__inner {
    flex-direction: column-reverse;
    gap: 20px;
    padding: 16px 0 0 0;
    width: 100%;
    align-items: flex-start;
  }
}

.l-footer.l-footer--en .l-footer__logo {
  margin: 0;
  width: 204px;
}

.l-footer--en .footernav ul {
  display: flex;
  flex-direction: row;
  gap: 82px;
}

@media (max-width: 1240px) {
  .l-footer--en .footernav ul {
    margin-left: 0;
    gap: clamp(24px, 24px + (82 - 24) * (100vw - 992px) / 248, 82px);
  }
}
@media (max-width: 992px) {
  .l-footer--en .footernav ul {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .l-footer--en .footernav ul {
    flex-wrap: wrap;
    gap: clamp(16px, 16px + (48 - 16) * (100vw - 375px) / 393, 48px);
  }
}

.l-footer--en .footernav ul li:not(.c-btn-dl, .c-btn-contact) {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .l-footer--en .footernav ul li:not(.c-btn-dl, .c-btn-contact) {
    padding-right: 0;
  }
}

.l-footer--en .footernav li {
  color: #434343;
  font-family: var(--font-en-noto);
  font-size: 16px;
  font-weight: 400;
}

.l-footer--en .footernav li a:hover {
  color: #00a3af;
}

.l-footer.l-footer--en .l-footer__btn {
  width: 192px;
  height: 45px;
  position: relative;
}
@media (max-width: 992px) {
  .l-footer.l-footer--en .l-footer__btn {
    display: none;
  }
}
@media (max-width: 768px) {
  .l-footer.l-footer--en .l-footer__btn {
    display: none;
  }
}

.l-footer__btn .c-btn__text {
  font-size: 18px;
}

.l-footer__btn .c-email-copy {
  position: absolute;
  bottom: -18px;
  left: 0;
}

.l-footer.l-footer--en .l-footer__copy {
  color: #676767;
  font-size: 12px;
  font-weight: 250;
  text-align: left;
  padding: 8px 20px 16px 20px;
  max-width: 1280px;
  margin: 0 auto;
  font-family: var(--font-en-noto);
}
@media (max-width: 768px) {
  .l-footer.l-footer--en .l-footer__copy {
    padding: 0 0 8px 0;
    width: 100%;
  }
}

.l-en-section--fst {
  padding-top: 160px;
}
@media (max-width: 768px) {
  .l-en-section--fst {
    padding-top: 70px;
  }
}

.l-en-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .l-en-section__inner {
    padding: 0 16px;
  }
}

.l-en-section__content {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .l-en-section__content {
    margin-top: 32px;
  }
}

.pc {
  display: block;
}
@media (max-width: 992px) {
  .pc {
    display: none;
  }
}

.tb {
  display: none;
}
@media (max-width: 992px) {
  .tb {
    display: block;
  }
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

.c-en-subtitle {
  text-align: center;
  color: #00a3af;
  text-align: center;
  font-family: var(--font-en-poppins);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.06;
}
@media (max-width: 768px) {
  .c-en-subtitle {
    font-size: 14px;
  }
}

.c-en-title {
  color: #000;
  text-align: center;
  font-family: var(--font-en-poppins);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.45;
  margin: 12px 0 0 0;
}
@media (max-width: 768px) {
  .c-en-title {
    margin-top: 6px;
    font-size: 24px;
  }
}

.c-en-title::before,
.c-en-title::after {
  display: none;
}

.c-btn.c-btn--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 4px rgba(158, 158, 158, 0.25));
  border-radius: 8px;
  color: #fcbb2e;
  text-align: center;
  font-family: var(--font-en-noto);
  font-size: 20px;
  font-weight: 500;
}

.c-btn.c-btn--orange {
  background: #fcbb2e;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 10px rgba(164, 164, 164, 0.16));
  color: #fff;
  font-family: var(--font-en-noto);
  border-radius: 8px;
  font-size: 24px;
  font-weight: 500;
  width: 100%;
  height: 100%;
}

.c-email-copy {
  width: 100%;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #434343;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.1;
  text-align: center;
  margin-top: 4px;
}

.c-email-copy--white {
  color: #fff;
}

.c-email-copy--white .c-email-copy__icon {
  filter: brightness(0) invert(1);
}

.c-email-copy__icon {
  width: 12px;
  height: 12px;
  aspect-ratio: 1 / 1;
  display: inline-block;
  transition: opacity 0.2s ease;
}

.c-email-copy__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.c-email-copy:hover .c-email-copy__icon {
  opacity: 0.7;
}

.c-email-copy.is-copied::after {
  content: "Copied!";
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 0.8rem 1rem;
  border-radius: 0.6rem;
  white-space: nowrap;
  z-index: 10;
  animation: copiedFade 1.6s ease forwards;
}

@keyframes copiedFade {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(4px);
  }

  15% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  80% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(4px);
  }
}

/* fv */
.p-en-fv {
  background: #fafafa;
  overflow: hidden;
}

.p-en-fv__image {
  display: block;
  width: 100%;
  height: auto;
}

.p-en-fv__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.p-en-fv__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 32px 88px;
}
@media (max-width: 1440px) {
  .p-en-fv__inner {
    padding: clamp(20px, 2.22vw, 32px) clamp(20px, 2.22vw, 32px)
      clamp(56px, 6.11vw, 88px);
  }
}
@media (max-width: 992px) {
  .p-en-fv__inner {
    padding: 62px 20px 80px 20px;
  }
}
@media (max-width: 768px) {
  .p-en-fv__inner {
    padding: 48px 20px 68px 20px;
  }
}

.p-en-fv__body {
  display: grid;
  grid-template-columns: minmax(430px, 1fr) minmax(420px, 44%);
  gap: clamp(24px, 3.61vw, 52px);
  align-items: flex-start;
}
@media (max-width: 1440px) {
  .p-en-fv__body {
  }
}
@media (max-width: 992px) {
  .p-en-fv__body {
    grid-template-columns: 1fr;
    display: flex;
    gap: 12px;
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  .p-en-fv__body {
    gap: 4px;
    padding: 0 8px;
  }
}

.p-en-fv__content,
.p-en-fv__visual {
  min-width: 0;
}

.p-en-fv__content {
  flex: 0 0 52%;
  max-width: 720px;
  padding-top: clamp(24px, 3.33vw, 48px);
}
@media (max-width: 992px) {
  .p-en-fv__content {
    flex: 1;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    padding-top: 24px;
  }
}
@media (max-width: 768px) {
  .p-en-fv__content {
    max-width: var(--sp-item);
  }
}

.p-en-fv__title {
  margin: 0;
  color: #000;
  font-family: var(--font-en-poppins);
  font-size: clamp(42px, 4.51vw, 65px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  letter-spacing: -0.01em;
}
@media (max-width: 992px) {
  .p-en-fv__title {
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  .p-en-fv__title {
    font-size: 32px;
  }
}

.p-en-fv__title-highlight {
  display: inline-block;
  margin-right: 4px;
  padding: 2px 12px 2px;
  border-radius: 4px;
  background: rgba(0, 163, 175, 0.14);
}
@media (max-width: 768px) {
}

.p-en-fv__lead {
  max-width: 540px;
  margin-top: clamp(16px, 1.67vw, 24px);
}
@media (max-width: 1440px) {
  .p-en-fv__lead {
    max-width: clamp(400px, 400px + (540 - 400) * (100vw - 992px) / 448, 540px);
  }
}

.p-en-fv__lead p {
  margin: 0;
  color: #000;
  font-family: var(--font-en-poppins);
  font-size: clamp(14px, 1.25vw, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 768px) {
}

.p-en-fv__actions {
  display: flex;
  flex-direction: column;
  margin-top: clamp(32px, 4.72vw, 68px);
  width: 216px;
}
@media (max-width: 992px) {
  .p-en-fv__actions {
    width: 400px;
  }
}

@media (max-width: 768px) {
  .p-en-fv__actions {
    width: 100%;
    max-width: 300px;
  }
}

.p-en-fv__cta {
  width: 216px;
  height: 51px;
  border-radius: 8px;
  background: #fcbb2e;
  filter: drop-shadow(0 4px 10px rgba(164, 164, 164, 0.16));
  color: #fff;
  text-align: center;
  font-family: var(--font-en-noto);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 0.8;
}
@media (max-width: 992px) {
  .p-en-fv__cta {
    width: 400px;
  }
}
@media (max-width: 768px) {
  .p-en-fv__cta {
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
  }
}

.p-en-fv__visual {
  flex: 1;
  max-width: 608px;
}
@media (max-width: 992px) {
  .p-en-fv__visual {
    width: 82%;
    margin: 0 auto;
  }
}

.p-en-fv__image-wrap {
  padding: 0 10px;
  position: relative;
}
@media (max-width: 768px) {
  .p-en-fv__image-wrap {
    padding: 0;
  }
}

.p-en-fv__image {
  border-radius: 24px;
}

.p-en-fv__stat {
  position: absolute;
  width: clamp(220px, 22.5vw, 324px);
  padding: clamp(16px, 1.67vw, 24px);
  border-radius: 8px;
  background: #00a3af;
  height: clamp(104px, 10.56vw, 152px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
@media (max-width: 992px) {
  .p-en-fv__stat {
    width: auto;
    height: auto;
    padding: 18px 12px;
  }
}

.p-en-fv__stat-label {
  margin: 0 0 8px;
  color: #fff;
  font-family: var(--font-en-nimbus);
  font-size: clamp(12px, 1.11vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-en-fv__stat-label {
    font-size: 14px;
  }
}

.p-en-fv__stat-value {
  margin: 0;
  color: #fff;
  font-family: var(--font-en-nimbus);
  font-size: clamp(38px, 4.44vw, 64px);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 992px) {
  .p-en-fv__stat-value {
    font-size: clamp(24px, 24px + (40 - 24) * (100vw - 375px) / 617, 40px);
  }
}

.p-en-fv__stat--locations {
  top: 44%;
  left: -184px;
}
@media (max-width: 1440px) {
  .p-en-fv__stat--locations {
    left: -28%;
  }
}
@media (max-width: 992px) {
  .p-en-fv__stat--locations {
    left: auto;
    right: -13%;
    top: -9%;
    padding: 14px 12px 17px 12px;
  }
}

.p-en-fv__stat--users {
  left: -34px;
  bottom: 18px;
  width: 380px;
  padding: 24px 24px 24px 42px;
}
@media (max-width: 1440px) {
  .p-en-fv__stat--users {
    width: auto;
    padding: 24px;
  }
}
@media (max-width: 992px) {
  .p-en-fv__stat--users {
    left: -10%;
    bottom: 24px;
    padding: 14px 12px 17px 12px;
  }
}
@media (max-width: 768px) {
  .p-en-fv__stat--users {
    left: -16%;
  }
}

.p-en-fv__note {
  margin: 6px 0 0;
  color: #6d6d6d;
  font-family: var(--font-en-noto-jp);
  font-size: 11px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.66;
}
@media (max-width: 992px) {
  .p-en-fv__note {
    display: none;
  }
}

/* benefits */
.p-benefits__content {
  display: grid;
  grid-template-columns: minmax(0, 635fr) minmax(0, 593fr);
  gap: 22px;
}
@media (max-width: 768px) {
  .p-benefits__content {
    gap: 30px;
    max-width: var(--sp-item);
    margin: 32px auto 0 auto;
    grid-template-columns: 1fr;
  }
}

.p-benefits__item {
  min-height: 440px;
  padding: 28px 48px 28px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 992px) {
  .p-benefits__item {
    padding: 28px 20px;
  }
}
@media (max-width: 768px) {
  .p-benefits__item {
    min-height: auto;
    padding: 30px 16px;
  }
}

.p-benefits__item:nth-child(3) {
  width: 73%;
  min-height: 420px;
  grid-column: 1 / -1;
}
@media (max-width: 768px) {
  .p-benefits__item:nth-child(3) {
    width: 100%;
    min-height: auto;
  }
}

.p-benefits__item-title {
  color: #00a3af;
  font-family: var(--font-en-poppins);
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-benefits__item-title {
    font-size: 22px;
    font-weight: 500;
  }
}

.p-benefits__item-text {
  color: #000;
  font-family: var(--font-en-poppins);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-benefits__item-text {
    font-size: 16px;
    font-weight: 300;
  }
}

.p-benefits__item:nth-child(1) .p-benefits__item-img {
  margin-top: 56px;
}
@media (max-width: 768px) {
  .p-benefits__item:nth-child(1) .p-benefits__item-img {
    margin-top: 20px;
  }
}

.p-benefits__item:nth-child(2) .p-benefits__item-img {
  max-width: 460px;
  margin: 0 auto;
  margin-top: 8px;
}

.p-benefits__item:nth-child(3) .p-benefits__item-img {
  max-width: 754px;
  margin: 0 auto;
  margin-top: 70px;
}

/* features */
.p-features__content {
  display: flex;
  flex-direction: column;
  gap: 130px;
  margin-top: 130px;
}
@media (max-width: 768px) {
  .p-features__content {
    max-width: var(--sp-item);
    margin: 48px auto 0 auto;
    gap: 48px;
  }
}

.p-features__item {
  display: flex;
  gap: 84px;
  align-items: center;
}
@media (max-width: 768px) {
  .p-features__item {
    gap: 8px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

.p-features__item:nth-child(2) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .p-features__item:nth-child(2) {
    gap: 8px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

.p-features__item:last-child {
  gap: 94px;
}
@media (max-width: 768px) {
  .p-features__item:last-child {
    gap: 8px;
  }
}

.p-features__item-img {
  max-width: 580px;
  width: 100%;
  flex: 0 0 50%;
  position: relative;
}
@media (max-width: 1240px) {
  .p-features__item-img {
    flex: 0 0 40%;
  }
}
@media (max-width: 768px) {
  .p-features__item-img {
    width: 90%;
    flex: 0 0 auto;
  }
}

.p-features__item-img-phone {
  position: absolute;
  width: 30%;
  bottom: -7%;
  right: -10%;
}

@media (max-width: 768px) {
  .p-features__item-img {
    right: -2.5%;
    bottom: -10%;
  }
}

.p-features__item-img img {
  border-radius: 8px;
}

.p-features__item-img::after {
  position: absolute;
  content: "";
  top: -20px;
  left: 20px;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #00a3af;
  transform: rotate(3.552deg);
}
@media (max-width: 768px) {
  .p-features__item-img::after {
    left: 10px;
    top: -10px;
    transform: rotate(2.552deg);
  }
}

.p-features__item:nth-child(2) .p-features__item-img::after {
  left: auto;
  right: -20px;
  transform: rotate(-3.552deg);
}
@media (max-width: 768px) {
  .p-features__item:nth-child(2) .p-features__item-img::after {
    left: 10px;
    top: -10px;
    transform: rotate(2.552deg);
  }
}

.p-features__item-body {
  flex: 1;
  flex-shrink: 0;
  margin-bottom: 40px;
}

.p-features__item-title {
  margin: 0;
  width: 100%;
  font-family: var(--font-en-poppins);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
}
@media (max-width: 768px) {
  .p-features__item-title {
    font-size: 20px;
  }
}

.p-features__item-text {
  font-family: var(--font-en-noto);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 8px 0 0 0;
  width: 100%;
  color: #000;
}
@media (max-width: 768px) {
  .p-features__item-text {
    font-size: 16px;
  }
}

.p-features__item-highlight {
  background: rgba(0, 163, 175, 0.14);
  border-radius: 4px;
  padding: 0 0.2em;
}

/* customers */
@keyframes p-customers-logo-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes p-customers-logo-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.p-customers {
  overflow: hidden;
}

.p-customers__logos {
  width: 100%;
}
@media (max-width: 768px) {
  .p-customers__logos {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
  }
}

.p-customers__logo-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .p-customers__logo-list {
    display: none;
  }
}

.p-customers__logo-marquee {
  display: none;
}
@media (max-width: 768px) {
  .p-customers__logo-marquee {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin: 0;
  }
}

.p-customers__logo-marquee-row {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.p-customers__logo-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  min-width: 100%;
  width: max-content;
  margin: 0;
  padding: 0 24px 0 0;
  list-style: none;
}

.p-customers__logo-track--left {
  animation: p-customers-logo-scroll-left 24s linear infinite;
}

.p-customers__logo-track--right {
  animation: p-customers-logo-scroll-right 24s linear infinite;
}

.p-customers__logo-item {
  flex: 0 0 auto;
}

.p-customers__logo-item {
  max-width: 170px;
  width: 100%;
}

.p-customers__logo-item img {
  display: block;
  max-width: 100%;
  height: auto;
}

.p-customers__logo-marquee .p-customers__logo-item {
  max-width: none;
  width: auto;
}

.p-customers__logo-marquee .p-customers__logo-item img {
  width: auto;
  max-width: none;
  height: 36px;
}
@media (max-width: 768px) {
  .p-customers__logo-marquee .p-customers__logo-item img {
    height: clamp(32px, 32px + (48 - 32) * (100vw - 375px) / 393, 48px);
  }
}

.p-customers__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1280px;
  padding: 0 20px;
  box-sizing: border-box;
  margin-top: 72px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 992px) and (min-width: 769px) {
  .p-customers__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .p-customers__cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
    margin-top: 48px;
  }
}

.p-customers__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: none;
  padding: 24px 16px;
  box-sizing: border-box;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 10px 8px rgba(222, 222, 222, 0.25);
}
@media (max-width: 768px) {
  .p-customers__card {
    width: 100% !important;
    max-width: var(--sp-item);
    padding: 32px 16px;
  }
}

.p-customers__card-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 377/230;
}
@media (max-width: 768px) {
  .p-customers__card-image {
    aspect-ratio: 305/203;
  }
}

.p-customers__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-customers__card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}

@media (min-width: 769px) {
  .p-customers__card-body {
    display: block;
    position: relative;
    min-height: 38px;
  }
}

.p-customers__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
}

@media (min-width: 769px) {
  .p-customers__card-header {
    display: block;
  }
}

.p-customers__card-logo {
  width: 88px;
  height: 38px;
  flex: 0 0 auto;
}

@media (min-width: 769px) {
  .p-customers__card-logo {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.p-customers__card-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-customers__card-company {
  margin: 0;
  color: #2d2d2d;
  font-family: var(--font-en-noto-jp);
  font-size: 12px;
  line-height: 20px;
}

.p-customers__card-text {
  margin: 0;
  color: #000;
  font-family: var(--font-en-noto-jp);
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width: 769px) {
  .p-customers__card-text {
    margin-top: 8px;
  }
}

/* cta */
@media (max-width: 768px) {
  .p-cta {
    padding-bottom: 24px;
  }
}

.p-cta__box {
  border-radius: 8px;
  background: #00a3af;
  display: flex;
  gap: 32px;
  padding: 66px clamp(20px, 20px + (82 - 20) * (100vw - 992px) / 148, 82px);
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  .p-cta__box {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .p-cta__box {
    max-width: var(--sp-item);
    margin: 0 auto;
    padding: 36px 14px 48px 14px;
  }
}

.p-cta__box-text {
  color: #fff;
  font-family: var(--font-en-poppins);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.12;
}
@media (max-width: 992px) {
  .p-cta__box-text {
    line-height: 1.5;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .p-cta__box-text {
    font-size: 24px;
  }
}

.p-cta__box-img {
  max-width: 376px;
  width: 100%;
}
@media (max-width: 1440px) {
  .p-cta__box-img {
    max-width: clamp(320px, 320px + (376 - 320) * (100vw - 992px) / 448, 376px);
  }
}
@media (max-width: 992px) {
  .p-cta__box-img {
    max-width: 240px;
    margin: 24px auto 0 auto;
  }
}
@media (max-width: 768px) {
  .p-cta__box-img {
    max-width: 182px;
    margin: 18px auto 0 auto;
  }
}

.p-cta__box-btn {
  margin-top: 32px;
  max-width: 226px;
  width: 100%;
  height: 45px;
}
@media (max-width: 992px) {
  .p-cta__box-btn {
    margin: 32px auto 0 auto;
    max-width: 400px;
    height: 45px;
  }
}
@media (max-width: 768px) {
  .p-cta__box-btn {
    max-width: 300px;
    margin: 32px auto 0 auto;
  }
}

.l-en-lp #ez-toc-container {
  display: none;
}
