:root {
  --color-gold: #c5a66e;
  --color-black: #1a1a1a;
  --color-dark-brown: #494541;
  --color-white: #ffffff;
  --color-page-bg: #3c3c3c;
  --color-tagline: #fafaf5;
  --color-sns-bg: #172d2d;
  --color-footer-bg: #111111;
  --color-divider: #e9e9e9;
  --font-en-serif: "Crimson Text", serif;
  --font-en-sans: "Roboto", sans-serif;
  --font-sans-jp: "Noto Sans JP", sans-serif;
  --font-serif-jp: "Noto Serif JP", serif;
  --layout-sp-breakpoint: 750;
  --layout-sp-viewport-width: 375;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  background-color: var(--color-page-bg);
  color: var(--color-white);
  font-family: var(--font-sans-jp);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  max-width: 100%;
}
@media screen and (min-width: 751px) and (max-width: 1440px) {
  body {
    width: 1440px;
    max-width: none;
  }
}

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

ul {
  list-style: none;
}

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

.l-inner {
  position: relative;
  width: 1440px;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .l-inner {
    width: 100%;
  }
}

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

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

.js-reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 312px;
  padding: 20px 44px;
  border: 1px solid var(--color-gold);
  border-radius: 6px;
  background-color: var(--color-gold);
  color: var(--color-black);
  font-family: var(--font-sans-jp);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2em;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.c-btn:hover {
  background-color: var(--color-white);
  border-color: var(--color-gold);
  color: var(--color-gold);
}
@media screen and (max-width: 750px) {
  .c-btn {
    width: 100%;
  }
}

.c-btn--dark {
  width: 312px;
  padding: 20px 20px 20px 60px;
  border-color: var(--color-black);
  background-color: var(--color-black);
  color: var(--color-gold);
}
.c-btn--dark:hover {
  background-color: var(--color-white);
  border-color: var(--color-black);
  color: var(--color-black);
}
.c-btn--dark:hover .c-btn__icon {
  filter: brightness(0) saturate(100%);
}
@media screen and (max-width: 750px) {
  .c-btn--dark {
    width: 100%;
  }
}

.c-btn__label {
  flex: 1;
  text-align: center;
}

.c-btn__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  transition: filter 0.2s ease;
}

.c-more {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 8px 16px 8px 40px;
  border-radius: 6px;
  background-color: var(--color-gold);
}

.c-more__label {
  font-family: var(--font-en-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  text-transform: uppercase;
  color: var(--color-black);
}

.c-more__icon {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-white);
  overflow: hidden;
  flex-shrink: 0;
}
.c-more__icon::before, .c-more__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/icon-arrow.svg") no-repeat center/contain;
}
.c-more__icon::after {
  transform: translateX(-32px);
}

.c-more:hover .c-more__icon::before, .c-more:hover .c-more__icon::after {
  transition: transform 0.35s ease;
}
.c-more:hover .c-more__icon::before {
  transform: translateX(32px);
}
.c-more:hover .c-more__icon::after {
  transform: translateX(0);
}

.l-footer {
  background-color: var(--color-footer-bg);
}
@media screen and (max-width: 750px) {
  .l-footer {
    background-color: #000000;
  }
}

.l-footer__inner {
  position: relative;
  height: 250px;
}
@media screen and (max-width: 750px) {
  .l-footer__inner {
    height: 270px;
  }
}

.l-footer__sns {
  position: absolute;
  left: 50%;
  top: 61px;
  display: flex;
  align-items: center;
  gap: 36px;
  transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .l-footer__sns {
    top: 51px;
    gap: 30px;
  }
}

.l-footer__sns-item {
  display: flex;
}

.l-footer__sns-link {
  display: flex;
  transition: opacity 0.2s ease;
}
.l-footer__sns-link:hover {
  opacity: 0.7;
}
.l-footer__sns-link img {
  width: 30px;
  height: 30px;
}

.l-footer__logo {
  position: absolute;
  left: 50%;
  top: 126px;
  width: 135.41px;
  height: auto;
  transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .l-footer__logo {
    top: 121px;
    width: 119px;
  }
}

.l-footer__copyright {
  position: absolute;
  left: 50%;
  top: 188px;
  transform: translateX(-50%);
  white-space: nowrap;
}
.l-footer__copyright small {
  display: block;
  font-family: var(--font-sans-jp);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: 0.05em;
  color: #666666;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .l-footer__copyright small {
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: normal;
    color: #727272;
  }
}
@media screen and (max-width: 750px) {
  .l-footer__copyright {
    top: 178px;
    white-space: normal;
    width: 245px;
  }
}

.p-fv {
  position: relative;
  height: 800px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-fv {
    height: 630px;
  }
}

.p-fv__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.p-fv__bg img {
  position: absolute;
  left: 50%;
  top: -386.21px;
  width: 2227.6px;
  height: 1246.43px;
  min-width: 100%;
  max-width: none;
  transform: translateX(calc(-50% - 2.41px));
  object-fit: fill;
}
@media screen and (max-width: 750px) {
  .p-fv__bg img {
    left: -256.62px;
    top: 155.66px;
    width: 877.48px;
    height: 490.98px;
    min-width: 0;
    transform: none;
    object-fit: fill;
  }
}

.p-fv__gradient {
  position: absolute;
  left: 0;
  top: 496.86px;
  width: 100%;
  height: 303.14px;
  background: linear-gradient(180deg, rgba(60, 60, 60, 0) 0%, rgb(60, 60, 60) 69%);
}
@media screen and (max-width: 750px) {
  .p-fv__gradient {
    top: 500px;
    height: 130px;
  }
}

.p-fv__gradient--top {
  display: none;
}
@media screen and (max-width: 750px) {
  .p-fv__gradient--top {
    display: block;
    top: 155.66px;
    height: 130px;
    transform: scaleY(-1);
  }
}

.p-fv__header {
  position: absolute;
  left: 60px;
  top: 33px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition-delay: 0.1s;
}
@media screen and (max-width: 750px) {
  .p-fv__header {
    left: 26px;
    top: 28px;
    gap: 16.34px;
  }
}

.p-fv__logo-forbes {
  width: 132px;
  height: auto;
}
@media screen and (max-width: 750px) {
  .p-fv__logo-forbes {
    width: 89.87px;
  }
}

.p-fv__logo-sep {
  display: block;
  width: 1px;
  height: 30px;
  background-color: var(--color-white);
}
@media screen and (max-width: 750px) {
  .p-fv__logo-sep {
    height: 20.43px;
  }
}

.p-fv__logo-jurin {
  display: block;
  height: 47px;
  width: auto;
}
@media screen and (max-width: 750px) {
  .p-fv__logo-jurin {
    height: 32px;
  }
}

.p-fv__tagline {
  position: absolute;
  left: 1242px;
  top: 128px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  transition-delay: 0.25s;
}
@media screen and (max-width: 750px) {
  .p-fv__tagline {
    left: 166.5px;
    top: 98px;
    justify-content: center;
    gap: 8px;
  }
}

.p-fv__tagline-col {
  writing-mode: vertical-rl;
  text-orientation: upright;
  width: 31px;
  font-family: var(--font-serif-jp);
  font-size: 32px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0.05em;
  color: var(--color-tagline);
}
@media screen and (max-width: 750px) {
  .p-fv__tagline-col {
    width: 17px;
    font-size: 16px;
  }
}

.p-fv__title {
  position: absolute;
  left: 118.89px;
  top: 570px;
  width: 955px;
  font-family: var(--font-en-serif);
  font-size: 115px;
  font-weight: 700;
  line-height: 1em;
  color: var(--color-gold);
  text-shadow: 0 2px 6px rgba(60, 60, 60, 0.5);
  transition-delay: 0.4s;
}
@media screen and (max-width: 750px) {
  .p-fv__title {
    left: 21.96px;
    top: 526.31px;
    width: 324px;
    font-size: 39px;
  }
}

.p-concept {
  position: relative;
  padding: 80px 208px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-concept {
    padding: 42px 25px;
  }
}

.p-concept__deco {
  position: absolute;
  left: calc(50% - 720px - 52.4px);
  top: 0;
  width: 514.94px;
  height: 693.7px;
  mix-blend-mode: multiply;
  pointer-events: none;
}

@media screen and (max-width: 750px) {
  .p-concept__deco--sp {
    left: -266px;
    top: -9.36px;
    width: 616.86px;
    height: 880.63px;
    max-width: none;
  }
}

.p-concept__content {
  position: relative;
  width: 676px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 54px;
}
@media screen and (max-width: 750px) {
  .p-concept__content {
    width: 100%;
    gap: 32px;
  }
}

.p-concept__text {
  font-family: var(--font-sans-jp);
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2em;
  text-align: center;
  color: var(--color-white);
}
@media screen and (max-width: 750px) {
  .p-concept__text {
    align-self: stretch;
    font-size: 14px;
    line-height: 2em;
    text-align: left;
  }
}

.p-concept__buttons {
  display: flex;
  align-items: center;
  gap: 36px;
}
@media screen and (max-width: 750px) {
  .p-concept__buttons {
    align-self: stretch;
    flex-direction: column;
    gap: 8px;
  }
}

.p-dialogue {
  position: relative;
  padding: 120px 0;
  background-color: var(--color-dark-brown);
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-dialogue {
    padding: 60px 0;
  }
}

.p-dialogue__deco {
  position: absolute;
  left: calc(50% - 720px - 341.6px);
  top: -492.7px;
  width: 2250px;
  height: 2685px;
  max-width: none;
  mix-blend-mode: multiply;
  pointer-events: none;
}

@media screen and (max-width: 750px) {
  .p-dialogue__deco--sp {
    left: -318.5px;
    top: -334.56px;
    width: 1055px;
    height: 2279px;
  }
}

.p-dialogue__header {
  position: relative;
  width: 1440px;
  margin: 0 auto;
  padding-left: 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .p-dialogue__header {
    width: 100%;
    padding: 0 25px;
  }
}

.p-dialogue__header-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 750px) {
  .p-dialogue__header-info {
    gap: 10px;
  }
}

.p-dialogue__header-dot {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--color-gold);
}
@media screen and (max-width: 750px) {
  .p-dialogue__header-dot {
    width: 14px;
    height: 14px;
  }
}

.p-dialogue__header-label {
  font-family: var(--font-en-sans);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1em;
  color: var(--color-white);
}
@media screen and (max-width: 750px) {
  .p-dialogue__header-label {
    font-size: 16px;
  }
}

.p-dialogue__header-title {
  font-family: var(--font-en-serif);
  font-size: 90px;
  font-weight: 700;
  line-height: 1.1em;
  color: var(--color-gold);
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .p-dialogue__header-title {
    font-size: 36px;
  }
}

.p-dialogue__list {
  position: relative;
  width: 1440px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 750px) {
  .p-dialogue__list {
    width: 100%;
    margin-top: 54px;
    gap: 54px;
  }
}

.p-dialogue__item {
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-dialogue__item {
    display: flex;
    flex-direction: column;
  }
}

.p-dialogue__fig {
  position: absolute;
  left: 0.46px;
  top: 0.24px;
  width: 727px;
  height: 373.6px;
  overflow: hidden;
}
.p-dialogue__fig img {
  position: absolute;
  max-width: none;
}
@media screen and (max-width: 750px) {
  .p-dialogue__fig {
    position: relative;
    left: auto;
    top: auto;
    order: 2;
    width: 350px;
    height: 244px;
    margin-top: -22px;
    margin-left: 0.65px;
  }
}

.p-dialogue__item--right .p-dialogue__fig {
  left: 713px;
}
@media screen and (max-width: 750px) {
  .p-dialogue__item--right .p-dialogue__fig {
    left: auto;
    margin-left: 25px;
  }
}

.p-dialogue__fig--01 img {
  left: 0;
  top: -13.43px;
  width: 727px;
  height: 484.67px;
}
@media screen and (max-width: 750px) {
  .p-dialogue__fig--01 img {
    left: -8px;
    top: 0;
    width: 366px;
    height: 244px;
  }
}

.p-dialogue__fig--02 img {
  left: 0;
  top: -55.54px;
  width: 727px;
  height: 484.67px;
}
@media screen and (max-width: 750px) {
  .p-dialogue__fig--02 img {
    left: -8px;
    top: 0;
    width: 366px;
    height: 244px;
  }
}

.p-dialogue__fig--03 img {
  left: -45.9px;
  top: -62.36px;
  width: 772.9px;
  height: 515.26px;
}
@media screen and (max-width: 750px) {
  .p-dialogue__fig--03 img {
    left: -23.61px;
    top: 0;
    width: 397.23px;
    height: 264.82px;
  }
}

.p-dialogue__caption {
  display: contents;
}
@media screen and (max-width: 750px) {
  .p-dialogue__caption {
    display: flex;
    order: 1;
    align-items: center;
    gap: 2px;
    position: relative;
    z-index: 2;
  }
}

@media screen and (max-width: 750px) {
  .p-dialogue__item--right .p-dialogue__caption {
    padding-left: 25px;
  }
}

.p-dialogue__num {
  position: absolute;
  left: 26px;
  top: 311.2px;
  font-family: var(--font-en-serif);
  font-size: 146px;
  font-style: italic;
  font-weight: 700;
  line-height: 1em;
  color: var(--color-gold);
  text-shadow: 0 3.42px 3.42px rgba(73, 69, 65, 0.5);
  white-space: nowrap;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .p-dialogue__num {
    position: static;
    font-size: 76px;
    letter-spacing: -0.03em;
  }
}

.p-dialogue__num-hash {
  font-size: 94px;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 750px) {
  .p-dialogue__num-hash {
    font-size: 60px;
    letter-spacing: 0.05em;
  }
}

.p-dialogue__item--right .p-dialogue__num {
  left: 793px;
}

.p-dialogue__info {
  position: absolute;
  left: 208px;
  top: 396.2px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .p-dialogue__info {
    position: static;
    gap: 3px;
  }
}

.p-dialogue__item--right .p-dialogue__info {
  left: 984px;
}

.p-dialogue__info-brand,
.p-dialogue__info-client {
  font-family: var(--font-serif-jp);
  font-size: 32px;
  font-weight: 700;
  line-height: 1em;
  color: var(--color-white);
}
@media screen and (max-width: 750px) {
  .p-dialogue__info-brand,
  .p-dialogue__info-client {
    font-size: 18px;
  }
}

.p-dialogue__info-cross {
  width: 20.76px;
  height: 20.38px;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .p-dialogue__info-cross {
    width: 10.19px;
    height: 10px;
  }
}

.p-dialogue__content {
  width: 644px;
  margin-top: 86px;
  margin-left: 691px;
  padding: 31px 47px 31px 61px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  background-color: rgba(60, 60, 60, 0.5);
  border: 1px solid var(--color-gold);
}
@media screen and (max-width: 750px) {
  .p-dialogue__content {
    order: 3;
    width: 350px;
    max-width: calc(100% - 25px);
    min-width: 0;
    align-self: center;
    margin-top: -21px;
    margin-left: auto;
    margin-right: auto;
    padding: 47px 21.5px 19px;
    align-items: center;
    gap: 16px;
  }
}

.p-dialogue__item--right .p-dialogue__content {
  margin-left: 105px;
  padding: 31px 61px 31px 47px;
}
@media screen and (max-width: 750px) {
  .p-dialogue__item--right .p-dialogue__content {
    margin-left: auto;
    margin-right: auto;
    padding: 47px 21.5px 19px;
  }
}

.p-dialogue__head {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--color-divider);
}
@media screen and (max-width: 750px) {
  .p-dialogue__head {
    align-self: auto;
    width: 280px;
    gap: 16px;
    padding-bottom: 15px;
  }
}

.p-dialogue__title {
  font-family: var(--font-serif-jp);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6em;
  color: var(--color-white);
}
@media screen and (max-width: 750px) {
  .p-dialogue__title {
    font-size: 20px;
  }
}

.p-dialogue__line {
  position: absolute;
  left: 0;
  bottom: -2px;
  display: block;
  width: 90px;
  height: 3px;
  background-color: var(--color-gold);
}
@media screen and (max-width: 750px) {
  .p-dialogue__line {
    bottom: -1.5px;
    width: 50px;
    height: 2px;
  }
}

.p-dialogue__desc {
  align-self: stretch;
  font-family: var(--font-sans-jp);
  font-size: 16px;
  font-weight: 400;
  line-height: 2em;
  color: var(--color-white);
}
@media screen and (max-width: 750px) {
  .p-dialogue__desc {
    align-self: auto;
    width: 280px;
    font-size: 14px;
    line-height: 1.8em;
  }
}

@media screen and (max-width: 750px) {
  .p-dialogue__content .c-more {
    align-self: flex-end;
    margin-right: 12.5px;
  }
}

.p-cta {
  position: relative;
  height: 440px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-cta {
    height: 230px;
  }
}

.p-cta__bg {
  position: absolute;
  left: 0;
  top: -219px;
  width: 100%;
  height: 823px;
}
.p-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(60, 60, 60, 0.4);
  transition: background-color 0.4s ease;
}
.p-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
@media screen and (max-width: 750px) {
  .p-cta__bg {
    left: -11.2%;
    top: 0;
    width: 122.6667%;
    height: 263px;
  }
}

.p-cta:has(.p-cta__link:hover) .p-cta__bg::after {
  background-color: rgba(60, 60, 60, 0.6);
}
.p-cta:has(.p-cta__link:hover) .p-cta__bg img {
  transform: scale(1.06);
}

.p-cta__inner {
  position: relative;
  width: 631.45px;
  margin: 0 auto;
  padding-top: 61.23px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media screen and (max-width: 750px) {
  .p-cta__inner {
    width: 325px;
    padding-top: 34.65px;
    gap: 8px;
  }
}

.p-cta__logo {
  align-self: stretch;
}
.p-cta__logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 750px) {
  .p-cta__logo {
    align-self: auto;
    width: 300px;
  }
}

.p-cta__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 750px) {
  .p-cta__info {
    gap: 16px;
  }
}

.p-cta__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 8px 10px;
  border-bottom: 2px solid var(--color-white);
}
@media screen and (max-width: 750px) {
  .p-cta__link {
    gap: 8px;
    padding: 0 5px 5px;
    border-bottom-width: 1px;
  }
}

.p-cta__link-label {
  font-family: var(--font-en-sans);
  font-size: 26px;
  font-weight: 700;
  line-height: 1em;
  color: var(--color-white);
}
@media screen and (max-width: 750px) {
  .p-cta__link-label {
    font-size: 16px;
  }
}

.p-cta__link-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 750px) {
  .p-cta__link-icon {
    width: 18px;
    height: 18px;
  }
}

.p-cta__sns {
  display: flex;
  align-items: center;
  gap: 43.33px;
  padding: 16px 40px;
  background-color: var(--color-sns-bg);
}
@media screen and (max-width: 750px) {
  .p-cta__sns {
    gap: 21.67px;
    padding: 8px 36px;
  }
}

.p-cta__sns-link {
  display: flex;
  transition: opacity 0.2s ease;
}
.p-cta__sns-link:hover {
  opacity: 0.7;
}

.p-cta__sns-fb {
  width: 39.38px;
  height: 40px;
}
@media screen and (max-width: 750px) {
  .p-cta__sns-fb {
    width: 19.69px;
    height: 20px;
  }
}

.p-cta__sns-in {
  width: 43.13px;
  height: 40px;
}
@media screen and (max-width: 750px) {
  .p-cta__sns-in {
    width: 21.57px;
    height: 20px;
  }
}

.p-cta__sns-ig {
  width: 39.32px;
  height: 40px;
}
@media screen and (max-width: 750px) {
  .p-cta__sns-ig {
    width: 19.66px;
    height: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
