html,
body {
  font-family: "Noto Serif JP", "Baskervville", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.baskervville {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-style: normal;
}
.baskervville-italic {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-style: italic;
}
.noto-serif-jp-light {
  font-family: "Noto Serif JP", "Baskervville", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.noto-sans-jp-thin {
  font-family: "Noto Sans JP", "Baskervville", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}
.noto-sans-jp-light {
  font-family: "Noto Sans JP", "Baskervville", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
.hide {
  display: none !important;
}
.menu {
  position: fixed;
  bottom: 0;
  right: 0;
  height: 100vh;
  width: 64rem;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99;
  opacity: 0;
  transition: all 1s cubic-bezier(0.14, 0.33, 0.09, 1);
  visibility: hidden;
}
@media (max-width: 768px) {
  .menu {
    width: 100vw;
  }
}
.menu .close-btn {
  position: absolute;
  right: 5rem;
  top: 7rem;
  z-index: 4;
  width: 2.6rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .menu .close-btn {
    right: 3rem;
    top: 4rem;
    width: 2.2rem;
  }
}
.menu ul {
  margin-top: 20rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media (max-width: 768px) {
  .menu ul {
    margin-top: 14rem;
    gap: 3rem;
  }
}
.menu ul li a {
  width: 49rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4.6rem;
  position: relative;
  left: 20%;
  opacity: 0;
  transition: all 1s cubic-bezier(0.14, 0.33, 0.09, 1);
}
.menu ul li a span {
  color: white;
  position: relative;
  z-index: 4;
}
.menu ul li a span:first-child {
  font-size: 2.4rem;
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-style: normal;
}
.menu ul li a span:last-child {
  font-size: 1.7rem;
  font-family: "Noto Serif JP", "Baskervville", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.menu ul li a::before {
  position: absolute;
  content: '';
  width: 13rem;
  height: 1px;
  left: 105%;
  top: 50%;
  background-color: white;
  opacity: 0.5;
}
.menu ul li a::after {
  position: absolute;
  content: '';
  width: 0;
  height: 2.8rem;
  background-color: rgba(255, 255, 255, 0.25);
  transition: all 1s cubic-bezier(0.11, 0.39, 0.16, 0.88);
}
.menu ul li a:hover {
  opacity: 1;
}
.menu ul li a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .menu ul li a {
    width: 80vw;
    gap: 4rem;
  }
  .menu ul li a span:first-child {
    font-size: 2rem;
  }
  .menu ul li a span:last-child {
    font-size: 1.4rem;
  }
}
.menu ul li .active {
  left: 0;
  opacity: 1;
}
.menu-show {
  opacity: 1;
  visibility: visible;
}
.copyright {
  position: fixed;
  right: 4rem;
  bottom: 1.6rem;
  color: white;
  font-size: 1.2rem;
  z-index: 7;
}
@media (max-width: 768px) {
  .copyright {
    font-size: 1.2rem;
    right: 1rem;
    bottom: 1rem;
  }
}
.slide-container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}
.slide-container .slide {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s cubic-bezier(0.14, 0.33, 0.09, 1);
}
.slide-container .slide img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.slide-container .show {
  opacity: 1;
  visibility: visible;
}
.menu-btn {
  position: fixed;
  right: 5rem;
  top: 7rem;
  z-index: 19;
  width: 3.6rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .menu-btn {
    right: 1.7rem;
    top: 4rem;
    width: 2.8rem;
  }
}
.cover-image {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  object-fit: cover;
  background: linear-gradient(180deg, rgba(147, 143, 104, 0.73) 0%, rgba(220, 215, 164, 0.66) 33.33%, rgba(204, 198, 150, 0.7) 66.67%, #5E5B3B 100%);
  mix-blend-mode: multiply;
}
.logo {
  position: fixed;
  left: 5rem;
  top: 5rem;
  z-index: 99;
}
.logo img {
  width: 24rem;
  mix-blend-mode: overlay;
}
@media (max-width: 768px) {
  .logo {
    left: 1.8rem;
    top: 1.8rem;
  }
  .logo img {
    width: 15rem;
  }
}
.btn {
  width: 35rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.7rem;
  margin: 3rem auto;
  border: 1px solid white;
  cursor: pointer;
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
}
.btn:hover {
  opacity: 0.8;
}
.btn .side-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
}
.btn .center-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24%;
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
  }
  .btn .center-arrow {
    right: 10%;
  }
}
.black-btn {
  border-color: #000;
  color: #000;
}
.page-slogan {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: clamp(3rem, 6vw, 13rem);
  font-size: 4rem;
  letter-spacing: 1.1rem;
  color: white;
  z-index: 5;
  transition: all 2s cubic-bezier(0.14, 0.33, 0.09, 1);
  opacity: 1;
  white-space: nowrap;
  mix-blend-mode: overlay;
}
@media (max-width: 768px) {
  .page-slogan {
    font-size: 2.2rem;
    left: 2rem;
    letter-spacing: 0;
  }
}
.big-title {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 24rem;
  font-size: 14rem;
  color: white;
  z-index: 2;
  transition: all 2s cubic-bezier(0.14, 0.33, 0.09, 1);
  opacity: 1;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  gap: 5rem;
  mix-blend-mode: overlay;
}
@media (max-width: 768px) {
  .big-title {
    font-size: 8rem;
    left: 3rem;
  }
}
.big-title span {
  transition: all 2s cubic-bezier(0.06, 0.55, 0.26, 0.94);
}
.big-title span:first-child {
  position: relative;
  left: 0;
}
.big-title span:last-child {
  position: relative;
  right: 0;
}
.big-title-innovation {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 24rem;
  font-size: 14rem;
  color: white;
  z-index: 2;
  transition: all 2s cubic-bezier(0.14, 0.33, 0.09, 1);
  opacity: 1;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  gap: 5rem;
  mix-blend-mode: overlay;
  font-family: "Noto Sans JP", "Baskervville", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}
@media (max-width: 768px) {
  .big-title-innovation {
    font-size: 8rem;
    left: 14rem;
  }
}
.big-title-innovation span {
  transition: all 2s cubic-bezier(0.06, 0.55, 0.26, 0.94);
}
.big-title-innovation span:first-child {
  position: relative;
  left: 0;
}
.big-title-innovation span:last-child {
  position: relative;
  right: 0;
}
.init-slogan-2 {
  opacity: 0;
}
.init-slogan-2 span:first-child {
  left: -10rem;
}
.init-slogan-2 span:last-child {
  right: -10rem;
}
.init-slogan {
  letter-spacing: 3rem;
  left: 20rem;
  opacity: 0;
}
.stage-contact {
  position: relative;
  height: 100vh;
  z-index: 13 !important;
}
.stage-contact .background-image {
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
@media (max-width: 768px) {
  .stage-contact .background-image {
    height: 96rem;
  }
}
.stage-contact .form-contact {
  position: relative;
  z-index: 11;
  display: flex;
  align-items: center;
  height: 100vh;
  padding-left: 15rem;
}
.stage-contact .form-contact .form-title {
  font-size: 2.4rem;
  text-align: center;
  width: 100%;
}
.stage-contact .form-contact .form {
  width: 58rem;
  height: fit-content;
}
.stage-contact .form-contact .form .title {
  font-size: 2.2rem;
  color: #000;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}
.stage-contact .form-contact .form .input-group {
  margin-bottom: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stage-contact .form-contact .form .input-group label {
  color: #000;
  font-size: 1.4rem;
}
.stage-contact .form-contact .form .input-group input,
.stage-contact .form-contact .form .input-group textarea {
  border: 1px solid #000;
  outline: none;
  padding: 12px 18px;
  width: 100%;
  font-size: 1.4rem;
  color: #000;
  background: transparent;
  border-radius: 0.3rem;
  font-family: Baskerville, 'Goudy Old Style', 'Palatino', 'Book Antiqua', serif;
}
.stage-contact .form-contact .form .wpcf7-form-control-wrap {
  position: relative;
}
.stage-contact .form-contact .form .show-tips::after {
  position: absolute;
  bottom: -4rem;
  font-size: 1.4rem;
  color: #ff0000;
  left: 0;
}
.stage-contact .form-contact .form .show-tips[data-name="username"]::after {
  content: '「お名前」をご記入ください。';
}
.stage-contact .form-contact .form .show-tips[data-name="phone"]::after {
  content: '「電話番号」をご記入ください。';
}
.stage-contact .form-contact .form .show-tips[data-name="email"]::after {
  content: '「メールアドレス」をご記入ください。';
}
.stage-contact .form-contact .form .show-tips[data-name="content"]::after {
  content: '「お問い合わせ内容」をご記入ください。';
  bottom: -2rem;
}
.stage-contact .form-contact .form .show-email-tips[data-name="email"]::after {
  content: '正しいメールアドレスをご記入ください。' !important;
}
.stage-contact .form-contact .form .show-phone-tips[data-name="phone"]::after {
  content: '正しい電話番号をご記入ください。' !important;
}
.stage-contact .form-contact .form .cross-input-group {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
.stage-contact .form-contact .form .cross-input-group input {
  width: 27rem;
}
.stage-contact .form-contact .form .confirm-check {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.3rem;
  cursor: pointer !important;
  width: fit-content;
  margin: 0 auto;
}
.stage-contact .form-contact .form .confirm-check label {
  color: #000;
  font-size: 1.6rem;
  margin-left: 1rem;
}
.stage-contact .form-contact .form .confirm-check label a {
  text-decoration: underline;
  color: #000;
}
.stage-contact .form-contact .form .confirm-check input {
  background-color: transparent;
  border: 1px solid #000;
  outline: none;
}
.stage-contact .form-contact .form .submit-btn {
  border: 1px solid #000;
  outline: none;
  width: 34rem;
  height: 7.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
  color: #000;
  margin: 4.8rem auto 0 auto;
  cursor: pointer;
}
.stage-contact .form-contact .form .submit-btn:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .stage-contact .form-contact {
    padding-left: 4rem;
    height: 96rem;
  }
  .stage-contact .form-contact .form {
    width: 78vw;
  }
  .stage-contact .form-contact .form .title {
    padding: 10rem 0 1rem 0;
    letter-spacing: 0.5rem;
  }
  .stage-contact .form-contact .form .cross-input-group {
    flex-direction: column;
    gap: 0;
  }
  .stage-contact .form-contact .form .input-group input,
  .stage-contact .form-contact .form .input-group textarea {
    padding: 8px 12px;
  }
  .stage-contact .form-contact .form .submit-btn {
    width: 100%;
  }
}
.wpcf7-submit {
  display: none;
}
.wpcf7-response-output {
  margin-top: 0 !important;
  color: white;
}
.grass-container {
  position: relative;
  margin-left: auto;
  width: clamp(500px, 55%, 800px);
  z-index: 3;
  color: white;
}
.grass-container::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  right: -64rem;
  top: 0;
  background-color: rgba(95, 95, 95, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  opacity: 0;
  transition: all 3s cubic-bezier(0.14, 0.33, 0.09, 1);
}
@media (max-width: 768px) {
  .grass-container {
    width: 100vw;
    margin-top: 100vh;
  }
}
.grass-container .title {
  font-size: 2.4rem;
  line-height: 2.8rem font-family: "Baskervville", serif; font-weight: 400; font-style: normal;;
  display: flex;
  flex-direction: column;
  margin-bottom: 19rem;
  position: relative;
  transform: translateY(0);
  transition: all 3s cubic-bezier(0.14, 0.33, 0.09, 1);
  opacity: 1;
}
.grass-container .title .sub-title {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .grass-container .title {
    font-size: 1.8rem;
    line-height: 2.2rem;
    margin-bottom: 10rem;
  }
  .grass-container .title .sub-title {
    font-size: 1.2rem;
  }
}
.grass-container .content {
  margin-top: 5.4rem;
  font-size: 1.8rem;
  line-height: 3.6rem;
  font-family: "Noto Serif JP", "Baskervville", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  position: relative;
  transform: translateY(0);
  transition: all 3s cubic-bezier(0.14, 0.33, 0.09, 1);
  opacity: 1;
}
@media (max-width: 768px) {
  .grass-container .content {
    margin-top: 4rem;
    font-size: 1.4rem;
    line-height: 3rem;
  }
}
.grass-container .init-status {
  position: relative;
  transform: translateY(10rem);
  opacity: 0;
}
.grass-container .manager-intro {
  margin-top: 24rem;
  position: relative;
  transform: translateY(0);
  transition: all 3s cubic-bezier(0.14, 0.33, 0.09, 1);
  opacity: 1;
}
.grass-container .manager-intro .name {
  font-size: 2.6rem;
  position: relative;
  letter-spacing: 1rem;
}
.grass-container .manager-intro .name img {
  position: absolute;
  width: 35rem;
  right: 0;
  top: 0;
}
@media (max-width: 768px) {
  .grass-container .manager-intro .name {
    margin-top: 4rem;
    font-size: 1.6rem;
    line-height: 3rem;
    letter-spacing: 0;
  }
  .grass-container .manager-intro .name img {
    width: 20rem;
  }
}
.grass-container .manager-intro .avatar {
  padding-top: 5.4rem;
}
.grass-container .manager-intro .avatar img {
  width: 43rem;
  height: 39rem;
  object-fit: cover;
}
@media (max-width: 768px) {
  .grass-container .manager-intro .avatar img {
    width: 24rem;
    height: 16.8rem;
  }
}
.grass-container .fix-height-200 {
  height: 20rem;
}
@media (max-width: 768px) {
  .grass-container .fix-height-200 {
    height: 10rem;
  }
}
.grass-container .btn {
  width: 100%;
  margin: 4rem auto;
}
.head-animation {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background-color: white;
}
.head-animation .logo-image {
  position: absolute;
  width: 36rem;
  top: 50%;
  transform: translateY(-50%);
  left: 40%;
  opacity: 0;
  transition: all 4.5s cubic-bezier(0.03, 0.55, 0.17, 0.93) 1s;
}
@media (max-width: 768px) {
  .head-animation .logo-image {
    top: 85%;
    left: 30%;
    width: 25rem;
    transform: translate(-50%, -50%);
  }
}
.head-animation .tag-image {
  position: absolute;
  width: 24rem;
  top: 50%;
  transform: translateY(-50%);
  right: 40%;
  opacity: 0;
  transition: all 4.5s cubic-bezier(0.03, 0.55, 0.17, 0.93) 1s;
}
@media (max-width: 768px) {
  .head-animation .tag-image {
    top: 10%;
    width: 15rem;
    right: 30%;
    transform: translateX(50%);
  }
}
.head-animation .logo-start {
  left: 20%;
  opacity: 1;
}
@media (max-width: 768px) {
  .head-animation .logo-start {
    left: 50%;
  }
}
.head-animation .tag-start {
  right: 15%;
  opacity: 1;
}
@media (max-width: 768px) {
  .head-animation .tag-start {
    right: 50%;
  }
}
main {
  position: relative;
}
@media (max-width: 768px) {
  main {
    width: 100vw;
  }
}
main .cover-image {
  position: absolute;
  z-index: 3;
}
main .slogan {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 13rem;
  font-size: 4.4rem;
  letter-spacing: 1rem;
  color: white;
  z-index: 7;
  font-family: "Noto Serif JP", "Baskervville", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
main .slogan .second-line {
  letter-spacing: 2.6rem;
}
main .slogan .sub-slogan {
  font-size: 1.8rem;
  letter-spacing: 0.5rem;
  padding-left: 3px;
  padding-top: 22px;
}
@media (max-width: 768px) {
  main .slogan {
    writing-mode: vertical-rl;
    font-size: 3rem;
    left: 3rem;
    top: 60%;
    letter-spacing: 0.4rem;
    white-space: nowrap;
    z-index: 7;
    margin-right: 2.2rem;
  }
  main .slogan .second-line {
    padding-top: 2rem;
    letter-spacing: 0.4rem;
    margin-left: 2rem;
  }
  main .slogan .second-line span {
    letter-spacing: 1.2rem;
  }
  main .slogan .sub-slogan {
    font-size: 1.3rem;
    letter-spacing: 0.4rem;
  }
}
main .stage-1 {
  position: sticky;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 1;
}
main .stage-1 .background-image {
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
main .stage-1 .stage-1-tag-image {
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  width: 24rem;
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
@media (max-width: 768px) {
  main .stage-1 .stage-1-tag-image {
    width: 15rem;
    right: 2.2rem;
    top: 40%;
  }
}
main .stage-1-intro {
  padding-top: 95vh;
  color: white;
  font-size: 1.4rem;
  padding-left: 7rem;
  position: fixed;
  top: 0;
  z-index: 3;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
main .stage-1-intro::after {
  content: '';
  width: 4.7rem;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: 1.2rem;
  left: 0;
  opacity: 0.4;
  z-index: 2;
}
@media (max-width: 768px) {
  main .stage-1-intro {
    padding-top: 88vh;
    padding-left: 2rem;
  }
  main .stage-1-intro::after {
    bottom: 5.2rem;
  }
}
main .stage-2 .stage-2-intro,
main .stage-3 .stage-2-intro {
  width: 64rem;
  height: 140rem;
  background-color: rgba(149, 149, 149, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}
main .stage-2 .stage-2-intro .intro-text,
main .stage-3 .stage-2-intro .intro-text {
  width: fit-content;
  color: white;
  font-size: 1.8rem;
  line-height: 5.6rem;
  letter-spacing: 0.2rem;
}
@media (max-width: 768px) {
  main .stage-2,
  main .stage-3 {
    height: 88rem;
  }
  main .stage-2 .stage-2-intro,
  main .stage-3 .stage-2-intro {
    width: 100vw;
    padding: 12rem 4rem;
    height: 150rem;
    margin-top: 100vh;
  }
  main .stage-2 .stage-2-intro .intro-text,
  main .stage-3 .stage-2-intro .intro-text {
    font-size: 1.5rem;
    line-height: 3rem;
    letter-spacing: 0;
  }
}
main .stage-2 .stage-3-intro,
main .stage-3 .stage-3-intro {
  width: 100vw;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 8;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 55vw 0 20rem 0;
}
main .stage-2 .stage-3-intro .pad,
main .stage-3 .stage-3-intro .pad {
  width: 55.5rem;
  height: 45rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 4rem 4rem 2rem 4rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
main .stage-2 .stage-3-intro .pad .title,
main .stage-3 .stage-3-intro .pad .title {
  font-size: 7rem;
  letter-spacing: 5rem;
  margin-bottom: 2rem;
}
main .stage-2 .stage-3-intro .pad .content,
main .stage-3 .stage-3-intro .pad .content {
  font-size: 1.6rem;
  line-height: 3.7rem;
}
@media (min-width: 769px) {
  main .stage-2 .stage-3-intro .pad .content,
  main .stage-3 .stage-3-intro .pad .content {
    white-space: nowrap;
  }
}
main .stage-2 .stage-3-intro .noto-sans .title,
main .stage-3 .stage-3-intro .noto-sans .title {
  font-family: "Noto Sans JP", "Baskervville", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}
main .stage-2 .stage-3-intro .noto-sans .content,
main .stage-3 .stage-3-intro .noto-sans .content {
  font-family: "Noto Sans JP", "Baskervville", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
main .stage-2 .stage-3-intro .black-pad,
main .stage-3 .stage-3-intro .black-pad {
  background-color: rgba(48, 48, 48, 0.35);
}
main .stage-2 .stage-3-intro .black-pad .title,
main .stage-3 .stage-3-intro .black-pad .title {
  color: white;
}
main .stage-2 .stage-3-intro .black-pad .content,
main .stage-3 .stage-3-intro .black-pad .content {
  color: white;
}
@media (max-width: 768px) {
  main .stage-2 .stage-3-intro,
  main .stage-3 .stage-3-intro {
    padding: 0;
    top: initial;
    bottom: 0;
  }
  main .stage-2 .stage-3-intro .pad,
  main .stage-3 .stage-3-intro .pad {
    width: 100vw;
    padding: 5rem 4rem 2rem 4rem;
  }
  main .stage-2 .stage-3-intro .pad .title,
  main .stage-3 .stage-3-intro .pad .title {
    font-size: 5.4rem;
    letter-spacing: 4rem;
  }
  main .stage-2 .stage-3-intro .pad .content,
  main .stage-3 .stage-3-intro .pad .content {
    font-size: 1.2rem;
    line-height: 3rem;
  }
}
main .stage-2 .background-image,
main .stage-3 .background-image {
  position: relative;
  width: 100vw;
  left: 0;
  top: 0;
  z-index: 2;
}
main .stage-2 {
  position: sticky;
  height: 100vh;
  overflow: hidden;
  z-index: 3;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  main .stage-2 {
    height: calc(100vh + 88rem);
  }
}
main .stage-2 .background-group {
  width: 100vw;
  height: 100vh;
  z-index: 2;
  object-fit: cover;
}
@media (max-width: 768px) {
  main .stage-2 .background-group {
    height: 88rem;
  }
}
main .stage-2 picture {
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 2;
  object-fit: cover;
}
@media (max-width: 768px) {
  main .stage-2 picture {
    height: 88rem;
  }
}
main .stage-2 .background-image {
  position: absolute;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  height: 100vh;
  object-fit: cover;
}
@media (max-width: 768px) {
  main .stage-2 .background-image {
    height: 88rem;
    object-fit: cover;
    object-position: center;
  }
}
main .stage-2 .show {
  opacity: 1;
}
main .stage-2-intro {
  width: 64rem;
  height: 140rem;
  min-height: 1220px;
  background-color: rgba(149, 149, 149, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: absolute;
  right: 0;
  top: 100vh;
  z-index: 8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}
main .stage-2-intro .intro-text {
  width: fit-content;
  color: white;
  font-size: 1.8rem;
  line-height: 5.6rem;
  letter-spacing: 0.2rem;
}
main .stage-2-intro .intro-text p {
  margin: 5rem 0;
}
@media (max-width: 768px) {
  main .stage-2-intro {
    width: 100vw;
    padding: 12rem 4rem;
    height: initial;
    min-height: initial;
    margin-top: 100vh;
  }
  main .stage-2-intro .intro-text {
    font-size: 1.5rem;
    line-height: 3rem;
    letter-spacing: 0;
  }
}
main .stage-3 {
  position: relative;
  height: calc(55vw + 45rem + ((100vh - 45rem)/2));
  z-index: 8;
  margin-top: 34rem;
}
@media (max-width: 768px) {
  main .stage-3 {
    margin-top: 0;
    height: 88rem;
    width: 100vw;
  }
}
main .stage-3 picture {
  position: sticky;
  width: 100vw;
  left: 0;
  top: 0;
  z-index: 2;
}
main .stage-3 .background-image {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 101vh;
  z-index: 5;
}
@media (min-width: 769px) {
  main .stage-3 .background-image {
    aspect-ratio: 1440/960;
  }
}
@media (max-width: 768px) {
  main .stage-3 .background-image {
    height: 88rem;
    object-fit: cover;
    object-position: center;
  }
}
main .stage-3 .btn {
  width: 100%;
}
main .stage-7 {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 1;
}
main .stage-7 .background-image {
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
}
main .stage-7 .contact-form {
  padding: 8rem 10rem 0 10rem;
  height: 100vh;
  z-index: 3;
  left: 0;
  top: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .stage-7 .contact-form .form {
  width: 58rem;
}
main .stage-7 .contact-form .form .title {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}
main .stage-7 .contact-form .form .input-group {
  margin-bottom: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
main .stage-7 .contact-form .form .input-group label {
  color: white;
  font-size: 1.4rem;
}
main .stage-7 .contact-form .form .input-group input,
main .stage-7 .contact-form .form .input-group textarea {
  border: 1px solid #D9D9D9;
  outline: none;
  padding: 12px 18px;
  width: 100%;
  font-size: 1.4rem;
  color: white;
  background: transparent;
  border-radius: 0.3rem;
  font-family: Baskerville, 'Goudy Old Style', 'Palatino', 'Book Antiqua', serif;
}
main .stage-7 .contact-form .form .cross-input-group {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
main .stage-7 .contact-form .form .cross-input-group input {
  width: 27rem;
}
main .stage-7 .contact-form .form .confirm-check {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.3rem;
  cursor: pointer !important;
  width: fit-content;
  margin: 0 auto;
}
main .stage-7 .contact-form .form .confirm-check label {
  color: white;
  font-size: 1.6rem;
  margin-left: 1rem;
}
main .stage-7 .contact-form .form .confirm-check label a {
  text-decoration: underline;
  color: white;
}
main .stage-7 .contact-form .form .confirm-check input {
  background-color: transparent;
  border: 1px solid #D9D9D9;
  outline: none;
}
main .stage-7 .contact-form .form .submit-btn {
  border: 1px solid #D9D9D9;
  outline: none;
  width: 34rem;
  height: 7.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
  color: white;
  margin: 4.8rem auto;
  cursor: pointer;
}
main .stage-7 .contact-form .form .submit-btn:hover {
  opacity: 0.8;
}
main .page-top {
  text-align: center;
  color: white;
  font-size: 1.7rem;
  cursor: pointer;
}
main .page-top:hover {
  opacity: 0.8;
}
/*# sourceMappingURL=./top.css.map */