html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, a, b {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 100%;
  list-style-type: none;
  vertical-align: baseline;
  text-decoration: none;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  color: var(--text-color-head, #222827);
  -webkit-font-smoothing: antialiased;
  background-image: url("../images/bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

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

input[type=submit], input[type=button],
button[type=submit],
button[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration,
button[type=submit]::-webkit-search-decoration,
button[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus, input[type=button]::focus,
button[type=submit]::focus,
button[type=button]::focus {
  outline-offset: -2px;
}

a {
  transition: 0.3s;
}
body.page-top {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body.page-top main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.header-cursor {
  position: fixed;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  background: radial-gradient(circle, rgba(253, 199, 25, 0.85) 0%, rgba(253, 199, 25, 0) 70%);
  filter: blur(5px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.35s ease, height 0.35s ease, opacity 0.25s ease;
  z-index: 9999;
  opacity: 0;
}

.header-cursor.is-active {
  opacity: 1;
}

.header-cursor.is-hover {
  width: 72px;
  height: 72px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
}

.header__inner {
  max-width: 1375px;
  margin: 0 auto;
  padding: 32px 48px 28px 13px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1242px) {
  .header__inner {
    padding: 20px 24px 16px;
  }
}

.header__logo {
  flex-shrink: 0;
}

.header__logo-img {
  display: block;
}
@media (max-width: 1242px) {
  .header__logo-img {
    display: none;
  }
}

.sp-header__logo-img {
  display: none;
}
@media (max-width: 1242px) {
  .sp-header__logo-img {
    display: block;
  }
}

.header__logo img {
  width: 334px;
  height: auto;
}
@media (max-width: 1242px) {
  .header__logo img {
    width: 176px;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__nav-item {
  display: flex;
  align-items: center;
}

.header__nav-sep {
  color: #FFF;
  padding: 0 18px;
  font-size: 1.2rem;
}

.header__nav-link {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 143.75%;
  letter-spacing: 2.788px;
}

.header__hamburger {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 1242px) {
  .header__hamburger {
    display: block;
  }
}

.header__hamburger-icon--close {
  display: none;
}

.header__hamburger.is-open .header__hamburger-icon--open {
  display: none;
}
.header__hamburger.is-open .header__hamburger-icon--close {
  display: block;
}

.sp-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg.png");
  background-size: cover;
  background-position: center top;
  z-index: 9;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sp-menu.open {
  display: flex;
}

.sp-menu__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 80px 40px 40px;
}

.sp-menu__list {
  list-style: none;
  width: 100%;
}

.sp-menu__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.sp-menu.open .sp-menu__item {
  opacity: 1;
  transform: translateY(0);
}

.sp-menu.open .sp-menu__item:nth-child(1) {
  transition-delay: 0.06s;
}

.sp-menu.open .sp-menu__item:nth-child(2) {
  transition-delay: 0.12s;
}

.sp-menu.open .sp-menu__item:nth-child(3) {
  transition-delay: 0.18s;
}

.sp-menu.open .sp-menu__item:nth-child(4) {
  transition-delay: 0.24s;
}

.sp-menu.open .sp-menu__item:nth-child(5) {
  transition-delay: 0.3s;
}

.sp-menu__link {
  display: block;
  color: #FFF;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 3px;
  padding: 24px 0;
  text-decoration: none;
}

body.is-noScroll {
  overflow: hidden;
}

.under-construction {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: calc(100dvh - 200px);
}

.under-construction__text {
  color: #FFF;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 4px;
}

.footer {
  width: 100%;
  background: transparent;
  flex-shrink: 0;
}

body.page-top .header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
}

body.page-top .header__inner {
  max-width: 1375px;
  margin: 0 auto;
  padding: 32px 48px 28px 13px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1242px) {
  body.page-top .header__inner {
    padding: 5.467vw 9.067vw 7.467vw 4.467vw;
  }
}

body.page-top .header__logo {
  flex-shrink: 0;
}

body.page-top .header__logo img {
  width: 332px;
  height: auto;
}
@media (max-width: 1242px) {
  body.page-top .header__logo img {
    width: 166px;
  }
}

.header__nav {
  padding-top: 3px;
}

body.page-top .header__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

body.page-top .header__nav-item {
  display: flex;
  align-items: center;
}

body.page-top .header__nav-sep {
  color: #FFF;
  padding: 0 18px;
  font-size: 1.2rem;
}

body.page-top .header__nav-link {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 143.75%;
  letter-spacing: 2.788px;
}

body.page-top .header__hamburger,
body.page-company .header__hamburger,
body.page-service .header__hamburger,
body.page-real_estate .header__hamburger,
body.page-contact .header__hamburger,
body.page-strategy .header__hamburger {
  display: none;
}
@media (max-width: 1242px) {
  body.page-top .header__hamburger,
  body.page-company .header__hamburger,
  body.page-service .header__hamburger,
  body.page-real_estate .header__hamburger,
  body.page-contact .header__hamburger,
  body.page-strategy .header__hamburger {
    display: block;
  }
}

@media (max-width: 1242px) {
  body.page-top .header__nav,
  body.page-company .header__nav,
  body.page-service .header__nav,
  body.page-real_estate .header__nav,
  body.page-contact .header__nav,
  body.page-strategy .header__nav {
    display: none;
  }
}

.hero {
  position: relative;
}

.hero__moon {
  position: absolute;
  top: 114px;
  right: max(24px, calc(50vw - 687.5px));
  width: clamp(200px, 27vw, 394px);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero__moon {
    top: clamp(70px, 12dvh, 110px);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(65px, 20vw, 85px);
  }
}

@keyframes moonGlow {
  0%, 100% {
    filter: drop-shadow(-24px 30px 10px rgba(235, 225, 200, 0.55));
  }
  50% {
    filter: drop-shadow(-24px 30px 16px rgba(235, 225, 200, 0.8));
  }
}
@keyframes moonGlowSp {
  0%, 100% {
    filter: drop-shadow(-10px 14px 5px rgba(235, 225, 200, 0.55));
  }
  50% {
    filter: drop-shadow(-10px 14px 8px rgba(235, 225, 200, 0.8));
  }
}
.hero__moon img {
  width: 100%;
  height: auto;
  animation: moonGlow 5s ease-in-out infinite;
}
@media (max-width: 768px) {
  .hero__moon img {
    animation: moonGlowSp 5s ease-in-out infinite;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1135px;
  margin: 0 auto;
  padding-top: clamp(60px, 28vh, 372px);
  overflow: hidden;
  padding-left: 26px;
}
@media (max-width: 768px) {
  .hero__content {
    padding-top: clamp(155px, 29dvh, 240px);
    padding-left: 32px;
    padding-right: 24px;
  }
}

.hero__subtitle-img {
  display: block;
  height: auto;
  margin-bottom: clamp(10px, 3vh, 37px);
  opacity: 0;
}
@media (max-width: 768px) {
  .hero__subtitle-img {
    margin: 0 auto 16px;
    width: 60vw;
  }
}

.hero__title-img {
  display: block;
  height: auto;
  margin-bottom: 100px;
  opacity: 0;
}
@media (max-width: 768px) {
  .hero__title-img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(20px, 4vh, 51px);
    width: 77.067vw;
  }
}

.hero__cta {
  padding-left: 4px;
  position: relative;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero__cta.is-visible {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .hero__cta {
    width: fit-content;
    margin: auto;
  }
}

.hero__cta::before {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 0;
  width: 1px;
  height: calc(100% - 32px);
  background: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
  .hero__cta::before {
    height: calc(100% - 16px);
  }
}

.hero__cta-lead {
  color: #FFF;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 146.154%;
  letter-spacing: 3.188px;
  padding-left: 41px;
}
@media (max-width: 768px) {
  .hero__cta-lead {
    font-size: 3.227vw;
    padding-left: 8.267vw;
    line-height: 0.2;
  }
}

.hero__cta-btn {
  display: inline-block;
  position: relative;
  padding: 3px 0px 10px 40px;
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)) 0 100%/100% 1px no-repeat;
}
@media (max-width: 768px) {
  .hero__cta-btn {
    padding: 0.8vw 0px 2.667vw 6.4vw;
  }
}

.hero__cta-btn::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 14px;
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
  transform: rotate(34deg);
  transform-origin: left center;
}
@media (max-width: 768px) {
  .hero__cta-btn::before {
    top: 12px;
    width: 22px;
  }
}

.hero__cta-btn::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 14px;
  width: 26px;
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
  transform: rotate(0deg);
  transform-origin: left center;
}
@media (max-width: 768px) {
  .hero__cta-btn::after {
    top: 24px;
    width: 18px;
  }
}

.hero__cta-text {
  color: #FFF;
  font-size: 45px;
  font-style: normal;
  font-weight: 300;
  line-height: 72px;
  letter-spacing: 13.684px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .hero__cta-text {
    font-size: 6.24vw;
    letter-spacing: 8px;
    line-height: 52px;
  }
}

.hero__cta-char {
  display: inline-block;
  opacity: 0;
}

.page-nav {
  padding: 195px 0 145px;
  flex-shrink: 0;
}
@media (max-width: 1129px) {
  .page-nav {
    padding: 60px 0 50px;
  }
}

.page-nav__inner {
  max-width: 1135px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 1129px) {
  .page-nav__inner {
    padding-bottom: 5.333vw;
  }
}

.page-nav__list {
  display: flex;
  align-items: center;
  gap: 52px;
  padding-left: 75px;
}
@media (max-width: 1129px) {
  .page-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(8px, 3vh, 38px);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

.page-nav__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0.05em;
  position: relative;
}
@media (max-width: 1129px) {
  .page-nav__link {
    font-size: 20px;
  }
}

.page-nav__item {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.page-nav__item.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes moonSpin {
  from {
    transform: perspective(80px) rotateY(0deg);
  }
  to {
    transform: perspective(80px) rotateY(360deg);
  }
}
.page-nav__icon {
  width: 28px;
  height: auto;
  flex-shrink: 0;
  animation: moonSpin 3s linear infinite;
}
@media (max-width: 1129px) {
  .page-nav__icon {
    width: 4.61vw;
  }
}

.page-nav__char {
  display: inline-block;
  transition: color 0.15s ease;
}
@media (max-width: 1129px) {
  .page-nav__char {
    font-size: 4.267vw;
  }
}

.page-nav__char.is-lit {
  color: #FDC719;
}

body.page-top .footer {
  border-top: none;
  background: transparent;
}

.footer__copyright {
  text-align: right;
  color: #FFF;
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: 23px;
  letter-spacing: 2.594px;
  max-width: 1135px;
  margin: 0 auto;
  padding: 0 0 97px 0;
}
@media (max-width: 768px) {
  .footer__copyright {
    text-align: center;
    padding: 8px 24px 16px;
    font-size: 2.133vw;
  }
}/*# sourceMappingURL=application.css.map */