@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

:root {
  --font-family: "Noto Serif JP", serif;
  --font-size-base: 16px;
  --line-height-base: 1.7;
  --font-family-jp: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-family-en: "Google Sans Flex", "Helvetica Neue", Arial, sans-serif;
  --color-black: #14242b;
  --color-navy: #304050;
  --color-gray: #797e80;
  --color-light-gray: #edecec;
  --color-white: #fff;
  --color-orange: #F6D0A0;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-black);
  background-color: var(--color-white);
  position: relative;
}

.l-main {
  padding-top: var(--l-header-height);
}

/* モバイルメニュー開いた時のスクロール禁止 */
body.opened {
  overflow: hidden;
}

:root {
  --l-header-height: 114px;
}
@media screen and (max-width: 769px) {
  :root {
    --l-header-height: 120px;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background-color: #fff;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-block: 32px;
  padding-inline: 120px;
}
@media screen and (max-width: 769px) {
  .l-header__inner {
    flex-direction: column;
    align-items: center;
    gap: 9px;
    padding-block: 24px;
    padding-inline: 50px;
  }
}

.l-header__logo {
  flex-shrink: 0;
  width: clamp(7.4375rem, 3.4106543624rem + 17.1812080537vw, 15.4375rem);
}
.l-header__logo-link {
  display: block;
  line-height: 0;
}

.l-header__logo-img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 769px) {
  .l-header__nav {
    width: 100%;
    max-width: 327px;
  }
}

.l-header__nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 43px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 769px) {
  .l-header__nav-list {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0;
    width: 100%;
  }
}

.l-header__nav-link {
  color: var(--color-black);
  font-family: "Google Sans Flex", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.625rem, 0.4362416107rem + 0.8053691275vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.l-header__nav-link:hover {
  opacity: 0.7;
}
.l-header__nav-link:focus-visible {
  outline: 2px solid var(--color-black);
  outline-offset: 4px;
}
@media screen and (max-width: 769px) {
  .l-header__nav-link {
    letter-spacing: 0.02em;
    line-height: 1;
  }
}

.l-footer {
  background-color: var(--color-black);
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-block: 60px;
}
@media screen and (max-width: 769px) {
  .l-footer__inner {
    align-items: flex-start;
    gap: 80px;
    padding-block: 60px;
    padding-inline: 40px;
  }
}

.l-footer__brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 55px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 769px) {
  .l-footer__brands {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 16px;
  }
}

.l-footer__brand-link {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 0;
  text-decoration: none;
  position: relative;
}
.l-footer__brand-link::after {
  content: "";
  position: absolute;
  top: 0;
  right: -13px;
  display: block;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: url("../img/footer/icon-external-link.svg") no-repeat center/contain;
}
.l-footer__brand-link--re-vibe::after {
  width: 12px;
  height: 12px;
  background-image: url("../img/footer/icon-external-link-lg.svg");
}
@media (any-hover: hover) {
  .l-footer__brand-link:hover {
    opacity: 0.85;
  }
}

.l-footer__brand-link--higher-ground {
  width: 171px;
  height: 20px;
  padding: 2px;
}

.l-footer__brand-link--tokyo-ground {
  width: 140px;
  height: 20px;
}

.l-footer__brand-link--zero-revo {
  width: 66px;
  height: 20px;
  padding: 2px 1px;
}

.l-footer__brand-link--re-vibe {
  width: auto;
  height: 20px;
  width: 105px;
}

.l-footer__brand-logo {
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.l-footer__copyright {
  margin: 0;
  font-family: var(--font-family-en);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media screen and (max-width: 769px) {
  .l-footer__copyright {
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.01em;
    white-space: normal;
  }
}

.l-footer__copyright-line {
  display: inline;
}
.l-footer__copyright-line + .l-footer__copyright-line::before {
  content: " ";
}
@media screen and (max-width: 769px) {
  .l-footer__copyright-line {
    display: block;
  }
  .l-footer__copyright-line + .l-footer__copyright-line::before {
    content: none;
  }
}

.c-section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex-shrink: 0;
}
@media screen and (max-width: 769px) {
  .c-section-title {
    gap: 24px;
  }
}

.c-section-title--center {
  align-items: center;
}
@media screen and (max-width: 769px) {
  .c-section-title--center {
    align-items: flex-start;
  }
}

.c-section-title--right {
  align-items: flex-end;
}
@media screen and (max-width: 769px) {
  .c-section-title--right {
    align-items: flex-start;
  }
}

.c-section-title__en {
  margin: 0;
  line-height: 0;
}

.c-section-title__en-img {
  display: block;
  width: auto;
  height: 54px;
}
@media screen and (max-width: 769px) {
  .c-section-title__en-img {
    height: 35px;
  }
}

.c-section-title__en-img--solutions {
  height: 57px;
}
@media screen and (max-width: 769px) {
  .c-section-title__en-img--solutions {
    height: 37px;
  }
}

.c-section-title__en-img--overview {
  height: 57px;
}
@media screen and (max-width: 769px) {
  .c-section-title__en-img--overview {
    height: 37px;
  }
}

.c-section-title--center .c-section-title__en-img {
  margin-inline: auto;
}

.c-section-title--right .c-section-title__en-img {
  margin-inline-end: auto;
}

.c-section-title__jp {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-family-jp);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}

.c-solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100%;
  padding-block: clamp(5rem, 4.3708053691rem + 2.6845637584vw, 6.25rem);
  padding-inline: clamp(1.25rem, 0.148909396rem + 4.6979865772vw, 3.4375rem);
  background-image: linear-gradient(0deg, rgba(48, 64, 80, 0.8) 0%, rgba(48, 64, 80, 0.8) 100%), var(--c-solution-card-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 769px) {
  .c-solution-card {
    padding-block: 80px;
    padding-inline: 34px;
  }
}

.c-solution-card.js-parallax--bg {
  background-image: none;
}

.c-solution-card.js-parallax--bg::before {
  content: "";
  position: absolute;
  inset: -200px 0;
  z-index: 0;
  background-image: var(--c-solution-card-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(var(--js-parallax-y, 0px));
  will-change: transform;
}

.c-solution-card.js-parallax--bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(0deg, rgba(48, 64, 80, 0.8) 0%, rgba(48, 64, 80, 0.8) 100%);
}

.c-solution-card__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  min-height: 100%;
}

.c-solution-card__title {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-family-en);
  font-size: clamp(1.875rem, 1.6862416107rem + 0.8053691275vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}
@media screen and (max-width: 769px) {
  .c-solution-card__title {
    font-size: 30px;
  }
}

.c-solution-card__divider {
  display: block;
  flex-shrink: 0;
  width: 140px;
  height: 1px;
  background-color: var(--color-white);
}

.c-solution-card__text {
  margin: 0;
  width: min-content;
  min-width: 100%;
  color: var(--color-white);
  font-family: var(--font-family-jp);
  font-size: clamp(0.75rem, 0.6241610738rem + 0.5369127517vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.625;
}
@media screen and (max-width: 769px) {
  .c-solution-card__text {
    font-size: 12px;
    letter-spacing: 0;
  }
}

.c-solution-card--real-estate {
  --c-solution-card-bg: url("../img/solutions/bg-solutions2.webp");
}

.c-solution-card--business-investment {
  --c-solution-card-bg: url("../img/solutions/bg-solutions3.webp");
}

.c-solution-card--asset-management {
  --c-solution-card-bg: url("../img/solutions/bg-solutions1.webp");
}

.p-front-top:not(.is-hero-done) .p-front-top__visual-img {
  opacity: 0;
  visibility: hidden;
}

.p-front-top:not(.is-hero-done) .p-front-top__lead--intro {
  opacity: 0;
  visibility: hidden;
}

.p-front-top:not(.is-hero-done) .p-front-top__title {
  opacity: 0;
  visibility: hidden;
}

.p-front-top:not(.is-hero-done) .p-front-top__lead--final {
  opacity: 0;
  visibility: hidden;
}

.p-front-top {
  background-color: var(--color-white);
}
@media screen and (max-width: 769px) {
  .p-front-top {
    display: flex;
    flex-direction: column;
    gap: 35px;
    justify-content: flex-end;
  }
}

.p-front-top__content {
  position: relative;
  padding-top: 126px;
  padding-bottom: 119px;
  padding-inline: clamp(0rem, -11.4285714286rem + 23.8095238095cqi, 10rem);
  height: 460px;
}
@media screen and (max-width: 769px) {
  .p-front-top__content {
    padding-top: 86px;
    padding-bottom: 2px;
    padding-inline: 20px;
    height: auto;
    min-height: 302px;
  }
}

.p-front-top__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 769px) {
  .p-front-top__copy {
    gap: 13px;
  }
}

.p-front-top__title {
  margin: 0;
  height: 180px;
}
@media screen and (max-width: 769px) {
  .p-front-top__title {
    width: 300px;
    height: 200px;
  }
}

.p-front-top__title-text,
.p-front-top__title-char {
  font-size: clamp(3.0625rem, 1.9299496644rem + 4.8322147651vw, 5.3125rem);
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-family-en);
}
@media screen and (max-width: 769px) {
  .p-front-top__title-text,
  .p-front-top__title-char {
    font-size: 49px;
    display: block;
  }
}

.p-front-top__title-char {
  letter-spacing: 0.005em;
}
@media screen and (max-width: 769px) {
  .p-front-top__title-char {
    padding-top: 2px;
  }
}

.p-front-top__title-text--line {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
@media screen and (max-width: 769px) {
  .p-front-top__title-text--line {
    flex-direction: column;
    gap: 0;
  }
}

.p-front-top__title-text-segment {
  display: block;
}

.p-front-top__title-char {
  display: inline-block;
}

.p-front-top__title img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.p-front-top__title-group {
  display: block;
}

.p-front-top__title-line {
  display: inline;
}
@media screen and (max-width: 769px) {
  .p-front-top__title-line {
    display: block;
  }
}

.p-front-top__lead {
  margin: 0;
  color: var(--color-gray);
  font-family: var(--font-family-jp);
}

.p-front-top__lead-line {
  display: block;
  clip-path: inset(0% 0% 0% 0%);
}

.p-front-top__lead--intro {
  position: absolute;
  top: 0;
  left: 0;
  width: max-content;
}

.p-front-top__lead--intro .p-front-top__lead-text {
  font-size: 66px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-black);
}
@media screen and (max-width: 769px) {
  .p-front-top__lead--intro .p-front-top__lead-text {
    font-size: 30px;
    letter-spacing: 0.03em;
  }
}

.p-front-top__lead--final .p-front-top__lead-line {
  display: inline;
  overflow: visible;
  padding-top: 8px;
  width: fit-content;
}

.p-front-top__lead-text {
  display: inline-block;
  font-weight: 700;
  line-height: 1;
}

.p-front-top__lead--final .p-front-top__lead-text {
  font-size: 24px;
  letter-spacing: 0;
  color: var(--color-black);
}
@media screen and (max-width: 769px) {
  .p-front-top__lead--final .p-front-top__lead-text {
    font-size: 16px;
    color: var(--color-gray);
  }
}

.p-front-top__visual {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
}
@media screen and (max-width: 769px) {
  .p-front-top__visual {
    height: 241px;
  }
}
.p-front-top__visual.js-parallax {
  --js-parallax-extra: 300px;
}
@media screen and (max-width: 769px) {
  .p-front-top__visual.js-parallax {
    --js-parallax-extra: 120px;
  }
}

.p-front-top__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-front-top__visual-img {
  position: absolute;
  top: -12.97%;
  left: 0;
  width: 100%;
  height: 175.62%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
@media screen and (max-width: 769px) {
  .p-front-top__visual-img {
    top: 0;
    left: -27.54%;
    width: 155.08%;
    height: calc(100% + var(--js-parallax-extra, 120px));
    object-position: center bottom;
  }
}

.p-front-about-us {
  background-color: var(--color-white);
}

.p-front-about-us__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: min(100%, 1200px);
  padding-block: 160px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media screen and (max-width: 769px) {
  .p-front-about-us__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
    padding-top: 106px;
    padding-bottom: 100px;
  }
}

.p-front-about-us__body {
  flex-shrink: 1;
  width: min(100%, 503px);
}
@media screen and (max-width: 769px) {
  .p-front-about-us__body {
    width: 100%;
  }
}

.p-front-about-us__text {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-family-jp);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.875;
}
@media screen and (max-width: 769px) {
  .p-front-about-us__text {
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 1.8571428571;
  }
}

.p-front-about-us__highlight {
  position: relative;
  display: inline;
  color: var(--color-white);
  font-weight: 500;
  line-height: 1.375;
  background-color: var(--color-navy);
  padding: 4px 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media screen and (max-width: 769px) {
  .p-front-about-us__highlight {
    padding-inline: 2px;
    line-height: 1.2857142857;
  }
}

.p-front-solutions {
  background-color: var(--color-light-gray);
}

.p-front-solutions__top {
  position: relative;
  height: 164px;
  background-color: var(--color-white);
}
@media screen and (max-width: 769px) {
  .p-front-solutions__top {
    height: 60px;
  }
}
.p-front-solutions__top::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: clamp(17.0625rem, -7.3817114094rem + 104.2953020134vw, 65.625rem);
  height: clamp(2.5rem, 1.2416107383rem + 5.3691275168vw, 5rem);
  pointer-events: none;
  background-color: var(--color-orange);
  clip-path: polygon(0 100%, 0 0, 100% 100%);
}
.p-front-solutions__top::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: var(--color-light-gray);
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
}

.p-front-solutions__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: min(100%, 1120px);
  padding-top: 156px;
  padding-bottom: 160px;
  padding-inline: 40px;
  margin-inline: auto;
  container-type: inline-size;
  container-name: "p-front-solutions__inner";
}
@media screen and (max-width: 769px) {
  .p-front-solutions__inner {
    padding-top: 86px;
    padding-bottom: 80px;
  }
}

.p-front-solutions__head {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 769px) {
  .p-front-solutions__head {
    justify-content: flex-start;
  }
}

.p-front-solutions__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 769px) {
  .p-front-solutions__list {
    flex-direction: column;
    gap: 20px;
  }
}

.p-front-solutions__list .c-solution-card {
  flex-shrink: 1;
  width: calc((100% - 50px) / 3);
  height: 420px;
  overflow: hidden;
}
@media screen and (max-width: 769px) {
  .p-front-solutions__list .c-solution-card {
    height: 320px;
    width: 295px;
  }
}

.p-front-overview {
  position: relative;
  isolation: isolate;
  background-color: var(--color-white);
}
.p-front-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../img/front-page/bg-overview.svg");
  background-repeat: no-repeat;
  background-position: 0px -80px;
  background-size: 1516px 1236.647px;
}
@media screen and (max-width: 769px) {
  .p-front-overview::before {
    background-size: cover;
    background-position: -50px 0;
  }
}
.p-front-overview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--color-orange);
  mix-blend-mode: screen;
}

.p-front-overview__top {
  position: relative;
  height: 164px;
}
@media screen and (max-width: 769px) {
  .p-front-overview__top {
    height: 60px;
  }
}
.p-front-overview__top::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: clamp(17.0625rem, -7.3817114094rem + 104.2953020134vw, 65.625rem);
  height: clamp(2.5rem, 1.2416107383rem + 5.3691275168vw, 5rem);
  pointer-events: none;
  background-color: var(--color-orange);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.p-front-overview__top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: var(--color-light-gray);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.p-front-overview__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(100%, 1000px);
  padding-top: 156px;
  padding-bottom: 160px;
  padding-inline: 40px;
  margin-inline: auto;
}
@media screen and (max-width: 769px) {
  .p-front-overview__inner {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 105px;
    padding-bottom: 100px;
  }
}

.p-front-overview__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  min-width: 330px;
}
@media screen and (max-width: 769px) {
  .p-front-overview__content {
    gap: 40px;
    width: 100%;
  }
}

.p-front-overview__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p-front-overview__company {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-family-jp);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.875;
}
@media screen and (max-width: 769px) {
  .p-front-overview__company {
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 1.8571428571;
  }
}

.p-front-overview__address {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-family-jp);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.875;
}
@media screen and (max-width: 769px) {
  .p-front-overview__address {
    max-width: 295px;
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 1.8571428571;
  }
}

.p-front-company-name {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--color-black);
}

.p-front-company-name__bg > img {
  object-fit: cover;
  object-position: bottom center;
}

.p-front-company-name__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 410px;
  padding-top: 40px;
  background: linear-gradient(0deg, rgba(48, 64, 80, 0.8) 0%, rgba(48, 64, 80, 0.8) 100%);
}
@media screen and (max-width: 769px) {
  .p-front-company-name__inner {
    height: 240px;
  }
}

.p-front-company-name__logo {
  display: block;
  flex-shrink: 0;
  width: 226px;
  height: 42px;
  --js-parallax-extra: 0px;
  overflow: visible;
}
.p-front-company-name__logo > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-width: 769px) {
  .p-front-company-name__logo {
    width: 180px;
    height: 34px;
  }
}

.animated__fadeIn,
.animated__fadeInDelay {
  opacity: 0;
  translate: 0 40px;
  transition: opacity 0.6s ease, translate 0.6s ease;
}
.animated__fadeIn.js-show,
.animated__fadeInDelay.js-show {
  opacity: 1;
  translate: 0 0;
}

.u-sp {
  display: none;
}
@media screen and (max-width: 769px) {
  .u-sp {
    display: inline-block;
  }
}

.u-pc {
  display: inline-block;
}
@media screen and (max-width: 769px) {
  .u-pc {
    display: none;
  }
}

.js-parallax {
  overflow: hidden;
  display: block;
}
.js-parallax > img {
  display: block;
  width: 100%;
  height: calc(100% + var(--js-parallax-extra, 100px));
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
@media screen and (max-width: 769px) {
  .js-parallax > img {
    object-position: center bottom;
  }
}

.js-parallax-vew {
  display: block;
}
.js-parallax-vew > img {
  display: block;
  width: 100%;
  height: calc(100% + var(--js-parallax-extra, 100px));
  object-fit: contain;
  object-position: center;
  will-change: transform;
}

.js-parallax--bg {
  will-change: --js-parallax-y;
}

.p-company__visual.js-parallax {
  --js-parallax-extra: 80px;
}
.p-company__visual.js-parallax > img {
  object-fit: contain;
}

.js-parallax-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.js-parallax-bg > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + var(--js-parallax-extra, 120px));
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.js-parallax-bg2 {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.js-parallax-bg2 > img {
  position: absolute;
  bottom: -120px;
  left: 0;
  width: 100%;
  height: calc(100% + var(--js-parallax-extra, 120px));
  object-fit: cover;
  object-position: center 60%;
  will-change: transform;
}
@media (min-width: 1500px) {
  .js-parallax-bg2 > img {
    object-position: center 70%;
  }
}
@media screen and (max-width: 769px) {
  .js-parallax-bg2 > img {
    bottom: -180px;
    height: calc(100% + var(--js-parallax-extra, 180px));
  }
}
