@charset "UTF-8";
/*
====>> サイト(案件)毎にスタイルを記述していくファイル <<====

・このファイルはサイト(案件)独自のスタイルを記述するファイル
・ここに記述するファイルは、接頭辞に「p-」を付けたセレクタにする事　/　例：「.p-project-item」

*/
/*		TOPページ
-----------------------------------------------------*/
.p-lp-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 230px;
}
@media screen and (max-width: 767px) {
  .p-lp-hero {
    min-height: 650px;
    padding-bottom: 120px;
  }
}
.p-lp-hero_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 110%;
  pointer-events: none;
  background-blend-mode: multiply;
}
.p-lp-hero_bg img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}
.p-lp-hero .l-container_wide {
  max-width: 1920px;
  width: 92%;
  padding: 50px 0 0 0;
}
.p-lp-hero_head {
  font-size: 4rem;
  font-size: clamp(2.4rem, 2.0833333333vw, 4rem);
  color: #fff;
  letter-spacing: 0.12em;
  line-height: 1.75;
  opacity: 0;
  transform: blur(6px);
  transition: all 1.2s ease-in-out;
  transition-delay: 0.5s;
}
@media screen and (max-width: 767px) {
  .p-lp-hero_head {
    font-size: 1.6rem;
    padding-top: 10vh;
  }
}
.p-lp-hero_head .cormorant-infant {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 13rem;
  font-size: clamp(8rem, 6.7708333333vw, 13rem);
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-lp-hero_head .cormorant-infant {
    font-size: 4.8rem;
  }
}
.p-lp-hero_head .cormorant-infant span {
  display: block;
}
.p-lp-hero.is-show .p-lp-hero_head {
  visibility: visible;
  opacity: 1;
  transform: blur(0);
}
.p-lp-hero.is-show .p-lp-hero_foot {
  visibility: visible;
  opacity: 1;
  transform: blur(0);
}
.p-lp-hero.is-show .c-link_btn {
  visibility: visible;
  opacity: 1;
  transform: blur(0);
}
.p-lp-hero_foot {
  font-size: 1.8rem;
  font-size: clamp(1.4rem, 0.9375vw, 1.8rem);
  color: #fff;
  line-height: 1.75;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: blur(6px);
  transition: all 1.2s ease-in-out;
  transition-delay: 0.5s;
}
@media screen and (max-width: 767px) {
  .p-lp-hero_foot {
    font-size: 1.2rem;
  }
}
.p-lp-hero_scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 94%;
  max-height: 94vh;
  position: absolute;
  top: 0;
  right: 20px;
}
.p-lp-hero_scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 100px;
  background: #fff;
  margin: 15px auto 0;
  transform-origin: top;
  animation: scroll 1.5s ease-in-out infinite;
}
.p-lp-hero .c-link_btn {
  margin-top: 1.7rem;
  opacity: 0;
  transform: blur(6px);
  transition: all 1.2s ease-in-out;
  transition-delay: 0.5s;
}

/*p-lp-hero*/
@keyframes scroll {
  from {
    transform: scale(1, 0);
  }
  to {
    transform: scale(1, 1);
  }
}
.p-lp-cta {
  position: fixed;
  bottom: 0;
  z-index: 999;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 18px 20px;
  transform: translateY(100%);
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-lp-cta {
    min-height: 4.2rem;
    padding: 8px 60px;
  }
}
.p-lp-cta.is-show {
  transform: translateY(0);
}
.p-lp-cta_btn {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-lp-cta_btn {
    font-size: 1.2rem;
    padding: 0.7rem 1rem;
  }
}
.p-lp-cta_btn span {
  font-size: 1em;
}
.p-lp-cta_btn span.is-small {
  font-size: 1.2rem;
  display: inline-block;
  margin-left: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-lp-cta_btn span.is-small {
    font-size: 0.8rem;
    margin-left: 0;
  }
}
.p-lp-cta_totop {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-lp-cta_totop {
    font-size: 0.8rem;
    right: 9px;
  }
}
.p-lp-cta_totop img {
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .p-lp-cta_totop img:hover {
    transform: translateY(-3px);
  }
}
@media screen and (max-width: 767px) {
  .p-lp-cta_totop img {
    width: 28px;
    height: 28px;
  }
}

/*p-lp-cta*/
.p-lp-commitment {
  position: relative;
  width: 100%;
  padding: 150px 80px 250px;
}
@media screen and (max-width: 1023px) {
  .p-lp-commitment {
    padding: 100px 60px 150px;
  }
}
@media screen and (max-width: 767px) {
  .p-lp-commitment {
    padding: 60px 0 30px 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-lp-commitment::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70vw;
    height: 60%;
    background-image: radial-gradient(closest-side, rgba(255, 255, 255, 0.1490196078), transparent);
    z-index: -1;
    pointer-events: none;
  }
}
.p-lp-commitment_head {
  position: absolute;
  top: 50%;
  left: -1%;
  transform: translateY(-50%);
  pointer-events: none;
  max-height: 100%;
}
@media screen and (max-width: 767px) {
  .p-lp-commitment_head {
    top: 60px;
    transform: translateY(0);
  }
}
.p-lp-commitment_head img {
  width: 100px;
  width: clamp(5rem, 5.2083333333vw, 10rem);
  aspect-ratio: 100/1096;
}
.p-lp-commitment .c-unit_image {
  width: 52vw;
  margin-right: calc(50% - 52vw);
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-lp-commitment .c-unit_image {
    width: calc(100% + 50px);
    margin-left: -50px;
    margin-right: 0;
  }
}
.p-lp-commitment .c-unit_image::before {
  content: "";
  display: block;
  position: absolute;
  top: -15%;
  right: -5%;
  z-index: -1;
  width: 50%;
  aspect-ratio: 1;
  background-image: radial-gradient(closest-side, rgba(255, 255, 255, 0.1490196078), transparent);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-lp-commitment .c-unit_image::before {
    width: 150%;
    top: -50%;
    right: 50%;
    transform: translateX(50%);
  }
}
@media screen and (min-width: 768px) {
  .p-lp-commitment .c-unit_image::after {
    content: "";
    width: 90%;
    aspect-ratio: 950/300;
    position: absolute;
    bottom: 5%;
    left: -40%;
    transform: translateY(50%);
    z-index: -1;
    background: url("../img/commitmentt_main_bottom_light.png") no-repeat center center/contain;
    pointer-events: none;
  }
}
.p-lp-commitment .c-unit_image .p-lp-commitment_image {
  position: relative;
}
.p-lp-commitment .c-unit_image .p-lp-commitment_image::before {
  content: "";
  display: block;
  width: 223px;
  aspect-ratio: 223/142;
  position: absolute;
  top: 0;
  right: 9%;
  z-index: 1;
  transform: translateY(-50%) scale(1);
  background-image: url("../img/commitment_main_top_light.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: brightness(1);
}
.p-lp-commitment .c-unit_image .p-lp-commitment_image_reflect {
  position: absolute;
  top: 92%;
  left: 0;
  width: 100%;
  aspect-ratio: 1083/250;
  z-index: -1;
  opacity: 0.22;
  pointer-events: none;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-lp-commitment .c-unit_image .p-lp-commitment_image_reflect {
    height: 100px;
  }
}
.p-lp-commitment .c-unit_image .p-lp-commitment_image_reflect::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(0deg, #252532, transparent);
}
.p-lp-commitment .c-unit_image .p-lp-commitment_image_reflect img {
  -o-object-position: bottom;
     object-position: bottom;
  transform: scale(1, -1); /* 上下反転 */
}
.p-lp-commitment .c-unit_image.is-show .p-lp-commitment_image::before {
  animation: flashglow 0.6s ease-out forwards;
  animation-delay: 1s;
}
@keyframes flashglow {
  0% {
    filter: brightness(1);
    transform: translateY(-50%) scale(1);
    opacity: 0.8;
  }
  30% {
    filter: brightness(2);
    transform: translateY(-50%) scale(1.5);
    opacity: 1;
  }
  100% {
    filter: brightness(1);
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}
.p-lp-commitment .c-unit_text {
  max-width: 650px;
}
@media screen and (min-width: 768px) {
  .p-lp-commitment .c-unit_text {
    margin-top: -100px;
    margin-top: clamp(0rem, -6.6666666667vw, -10rem);
  }
}
.p-lp-commitment .c-unit_text p {
  font-weight: bold;
  line-height: 2.5;
}
.p-lp-commitment .c-unit_text p + p {
  margin-top: 2em;
}

/*p-lp-commitment*/
.p-lp-reason {
  width: 100%;
  overflow: hidden;
  padding: 90px 0 150px;
  background: url(assets/img/reason_bg.webp);
  background-image: -webkit-image-set(url("../img/reason_bg.webp") type("image/webp") 1x, url("../img/reason_bg@2x.webp") type("image/webp") 2x, url("../img/reason_bg.png") type("image/png") 1x, url("../img/reason_bg@2x.png") type("image/png") 2x);
  background-image: image-set(url("../img/reason_bg.webp") type("image/webp") 1x, url("../img/reason_bg@2x.webp") type("image/webp") 2x, url("../img/reason_bg.png") type("image/png") 1x, url("../img/reason_bg@2x.png") type("image/png") 2x);
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-lp-reason {
    background-image: -webkit-image-set(url("../img/reason_bg_sp.webp") type("image/webp") 1x, url("../img/reason_bg_sp@2x.webp") type("image/webp") 2x, url("../img/reason_bg_sp.png") type("image/png") 1x, url("../img/reason_bg_sp@2x.png") type("image/png") 2x);
    background-image: image-set(url("../img/reason_bg_sp.webp") type("image/webp") 1x, url("../img/reason_bg_sp@2x.webp") type("image/webp") 2x, url("../img/reason_bg_sp.png") type("image/png") 1x, url("../img/reason_bg_sp@2x.png") type("image/png") 2x);
    background-position: top 18% center;
    padding: 90px 0;
  }
}
.p-lp-reason_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 5%;
}
@media screen and (max-width: 767px) {
  .p-lp-reason_menu {
    flex-direction: column;
  }
}
.p-lp-reason_menu_item {
  flex: 1;
  max-width: 586px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  padding: 6px;
  background: rgba(255, 255, 255, 0.22);
  transition: all 0.3s ease-in-out;
}
.p-lp-reason_menu_item a {
  position: relative;
  display: block;
  box-shadow: 0px 0px 20px 10px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease-in-out;
}
.p-lp-reason_menu_item a::before, .p-lp-reason_menu_item a::after {
  content: "";
  width: 64px;
  aspect-ratio: 64/170;
  position: absolute;
  top: 50%;
  z-index: 10;
  background: url("../img/reason_menu_light.png") no-repeat center center/contain;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  pointer-events: none;
}
.p-lp-reason_menu_item a::before {
  left: 0;
  transform: translate(-50%, -50%);
}
.p-lp-reason_menu_item a::after {
  right: 0;
  transform: translate(50%, -50%);
}
.p-lp-reason_menu_item figure {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.p-lp-reason_menu_item figure::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 70%;
  background: linear-gradient(0deg, #000, transparent);
  pointer-events: none;
  transition: all 0.4s ease-in-out;
}
.p-lp-reason_menu_item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
@media (hover: hover) {
  .p-lp-reason_menu_item:hover a:hover {
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.1);
  }
  .p-lp-reason_menu_item:hover a:hover::before, .p-lp-reason_menu_item:hover a:hover::after {
    opacity: 1;
  }
  .p-lp-reason_menu_item:hover a:hover img {
    transform: scale(1.05);
  }
  .p-lp-reason_menu_item:hover a:hover figure::before {
    content: "";
    height: 80%;
  }
}
.p-lp-reason_menu_title {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 1.2rem;
  color: #fff;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .p-lp-reason_menu_title {
    padding-bottom: 50px;
  }
}
.p-lp-reason_menu_title_en {
  font-size: 1.8rem;
  font-size: clamp(1.2rem, 1.5vw, 1.8rem);
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-lp-reason_menu_title_en {
    font-size: 1rem;
  }
}
.p-lp-reason_menu_title_jp {
  font-size: 2.8rem;
  font-size: clamp(1.6rem, 2.3333333333vw, 2.8rem);
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-lp-reason_menu_title_jp {
    font-size: 1.6rem;
  }
}
.p-lp-reason_menu_title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-lp-reason_menu_title::before {
    height: 30px;
  }
}
.p-lp-reason_menu_title::after {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50%;
  animation: reasonMenuMove 1.5s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .p-lp-reason_menu_title::after {
    width: 5px;
    bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  @keyframes reasonMenuMove {
    from {
      bottom: 50px;
      opacity: 1;
    }
    to {
      bottom: 2px;
      opacity: 0.3;
    }
  }
}
@media screen and (max-width: 767px) {
  @keyframes reasonMenuMove {
    from {
      bottom: 30px;
      opacity: 1;
    }
    to {
      bottom: 2px;
      opacity: 0.3;
    }
  }
}

/*p-lp-reason*/
.js-parallax {
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.p-lp-selected-land {
  width: 100%;
  overflow: hidden;
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .p-lp-selected-land {
    padding: 30px 0 50px;
  }
}
.p-lp-selected-land .c-media {
  position: relative;
}
.p-lp-selected-land .c-media::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 35%;
  width: 70%;
  aspect-ratio: 1505/1129;
  transform: translate(-50vw, -50%);
  background: -webkit-image-set(url("../img/selected-land_bg_01.webp") type("image/webp") 1x, url("../img/selected-land_bg_01@2x.webp") type("image/webp") 2x, url("../img/selected-land_bg_01.png") type("image/png") 1x, url("../img/selected-land_bg_01@2x.png") type("image/png") 2x) no-repeat left center/contain;
  background: image-set(url("../img/selected-land_bg_01.webp") type("image/webp") 1x, url("../img/selected-land_bg_01@2x.webp") type("image/webp") 2x, url("../img/selected-land_bg_01.png") type("image/png") 1x, url("../img/selected-land_bg_01@2x.png") type("image/png") 2x) no-repeat left center/contain;
}
@media screen and (max-width: 767px) {
  .p-lp-selected-land .c-media::before {
    width: 100%;
    left: unset;
    right: -15%;
    transform: translate(0, -30%);
  }
}
.p-lp-selected-land .c-media_image {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-lp-selected-land .c-media_image {
    max-width: 327px;
  }
}
.p-lp-selected-land .c-media_image::before {
  content: "";
  display: block;
  position: absolute;
  top: -30%;
  right: -15%;
  z-index: -1;
  width: 60%;
  aspect-ratio: 1;
  background-image: radial-gradient(closest-side, rgba(255, 255, 255, 0.1490196078), transparent);
  pointer-events: none;
}
.p-lp-selected-land .c-media + .c-media::before {
  aspect-ratio: 1617/907;
  background: -webkit-image-set(url("../img/selected-land_bg_02.webp") type("image/webp") 1x, url("../img/selected-land_bg_02@2x.webp") type("image/webp") 2x, url("../img/selected-land_bg_02.png") type("image/png") 1x, url("../img/selected-land_bg_02@2x.png") type("image/png") 2x) no-repeat right center/contain;
  background: image-set(url("../img/selected-land_bg_02.webp") type("image/webp") 1x, url("../img/selected-land_bg_02@2x.webp") type("image/webp") 2x, url("../img/selected-land_bg_02.png") type("image/png") 1x, url("../img/selected-land_bg_02@2x.png") type("image/png") 2x) no-repeat right center/contain;
}
.p-lp-selected-land .c-media.is-reverse::before {
  left: unset;
  right: 35%;
  transform: translate(50vw, -50%);
}
@media screen and (max-width: 767px) {
  .p-lp-selected-land .c-media.is-reverse::before {
    right: unset;
    left: -15%;
    transform: translate(0, -30%);
  }
}
.p-lp-selected-land .c-media.is-reverse .c-media_image::before {
  right: unset;
  left: -15%;
}
.p-lp-selected-land .c-media.is-reverse .c-media_image figure {
  margin-left: auto;
}
.p-lp-selected-land .c-media_text {
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .p-lp-selected-land .c-media_text {
    max-width: 327px;
  }
}
@media screen and (max-width: 1449px) {
  .p-lp-selected-land .c-media_text .is-pc {
    display: none;
  }
}

/*p-lp-selected-land*/
.p-lp-asset-value {
  width: 100%;
  overflow: hidden;
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .p-lp-asset-value {
    padding: 50px 0 30px;
  }
}
.p-lp-asset-value .c-media {
  position: relative;
}
.p-lp-asset-value .c-media::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 35%;
  width: 65%;
  aspect-ratio: 1347/981;
  transform: translate(-50vw, -50%);
  background: -webkit-image-set(url("../img/asset-value_bg_01.webp") type("image/webp") 1x, url("../img/asset-value_bg_01@2x.webp") type("image/webp") 2x, url("../img/asset-value_bg_01.png") type("image/png") 1x, url("../img/asset-value_bg_01@2x.png") type("image/png") 2x) no-repeat left center/contain;
  background: image-set(url("../img/asset-value_bg_01.webp") type("image/webp") 1x, url("../img/asset-value_bg_01@2x.webp") type("image/webp") 2x, url("../img/asset-value_bg_01.png") type("image/png") 1x, url("../img/asset-value_bg_01@2x.png") type("image/png") 2x) no-repeat left center/contain;
}
@media screen and (max-width: 767px) {
  .p-lp-asset-value .c-media::before {
    width: 100%;
    left: unset;
    right: -15%;
    transform: translate(0, -30%);
  }
}
.p-lp-asset-value .c-media_image {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-lp-asset-value .c-media_image {
    max-width: 327px;
  }
}
.p-lp-asset-value .c-media_image::before {
  content: "";
  display: block;
  position: absolute;
  top: -30%;
  right: -15%;
  z-index: -1;
  width: 50%;
  aspect-ratio: 1;
  background-image: radial-gradient(closest-side, rgba(255, 255, 255, 0.1490196078), transparent);
  pointer-events: none;
}
.p-lp-asset-value .c-media + .c-media::before {
  aspect-ratio: 1703/1136;
  background: -webkit-image-set(url("../img/asset-value_bg_02.webp") type("image/webp") 1x, url("../img/asset-value_bg_02@2x.webp") type("image/webp") 2x, url("../img/asset-value_bg_02.png") type("image/png") 1x, url("../img/asset-value_bg_02@2x.png") type("image/png") 2x) no-repeat left center/contain;
  background: image-set(url("../img/asset-value_bg_02.webp") type("image/webp") 1x, url("../img/asset-value_bg_02@2x.webp") type("image/webp") 2x, url("../img/asset-value_bg_02.png") type("image/png") 1x, url("../img/asset-value_bg_02@2x.png") type("image/png") 2x) no-repeat left center/contain;
}
.p-lp-asset-value .c-media.is-reverse::before {
  left: unset;
  right: 35%;
  transform: translate(50vw, -50%);
}
@media screen and (max-width: 767px) {
  .p-lp-asset-value .c-media.is-reverse::before {
    right: unset;
    left: -15%;
    transform: translate(0, -30%);
  }
}
.p-lp-asset-value .c-media.is-reverse .c-media_image::before {
  right: unset;
  left: -20%;
}
.p-lp-asset-value .c-media.is-reverse .c-media_image figure {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-lp-asset-value .c-media_text {
    max-width: 327px;
  }
}
.p-lp-asset-value .c-media_text p {
  line-height: 2.5;
}
@media screen and (max-width: 1449px) {
  .p-lp-asset-value .c-media_text p .is-pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-lp-asset-value .c-media_text p {
    line-height: 2;
  }
}

/*.p-lp-asset-value*/
.p-lp-message {
  padding: 90px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-lp-message {
    padding: 200px 0 250px;
  }
}
.p-lp-message::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 1341px;
  aspect-ratio: 1;
  background-image: radial-gradient(farthest-side, rgba(255, 255, 255, 0.3294117647), transparent);
}
@media screen and (max-width: 767px) {
  .p-lp-message::before {
    width: 615px;
    width: 158%;
    top: 100%;
  }
}
.p-lp-message .l-container {
  position: relative;
  z-index: 1;
}
.p-lp-message_deco {
  pointer-events: none;
  position: absolute;
  z-index: -1;
}
.p-lp-message_deco_01 {
  top: 5%;
  left: 0;
  width: 425px;
  width: clamp(22.5rem, 22.1354166667vw, 42.5rem);
}
@media screen and (max-width: 767px) {
  .p-lp-message_deco_01 {
    width: 137px;
    top: 2%;
  }
}
.p-lp-message_deco_02 {
  top: 2%;
  right: 2%;
  width: 317px;
  width: clamp(11.7rem, 16.5104166667vw, 31.7rem);
}
@media screen and (max-width: 767px) {
  .p-lp-message_deco_02 {
    width: 116px;
    top: 5%;
    right: 45%;
  }
}
.p-lp-message_deco_03 {
  top: 42%;
  right: 7%;
  width: 384px;
  width: clamp(18.4rem, 20vw, 38.4rem);
}
@media screen and (max-width: 767px) {
  .p-lp-message_deco_03 {
    width: 134px;
    top: 2%;
    right: -1%;
  }
}
.p-lp-message_deco_04 {
  top: 45%;
  left: 5%;
  width: 333px;
  width: clamp(13.3rem, 17.34375vw, 33.3rem);
}
@media screen and (max-width: 767px) {
  .p-lp-message_deco_04 {
    width: 122px;
    top: unset;
    bottom: 12%;
    left: 25%;
  }
}
.p-lp-message_deco_05 {
  bottom: 5%;
  left: -3%;
  width: 473px;
  width: clamp(27.3rem, 24.6354166667vw, 47.3rem);
}
@media screen and (max-width: 767px) {
  .p-lp-message_deco_05 {
    width: 192px;
    top: unset;
    bottom: 0;
    left: -5%;
  }
}
.p-lp-message_deco_06 {
  bottom: 0;
  right: 0;
  width: 398px;
  width: clamp(29.8rem, 20.7291666667vw, 39.8rem);
}
@media screen and (max-width: 767px) {
  .p-lp-message_deco_06 {
    width: 145px;
    top: unset;
    bottom: 5%;
    right: 0;
  }
}
.p-lp-message_content p {
  text-align: center;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .p-lp-message_content p {
    line-height: 2;
  }
}
.p-lp-message_content p + p {
  margin-top: 2em;
}

/*p-lp-message*/
.p-lp-register {
  padding: 30px 0 130px;
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  transform: translateY(0px);
}
@media screen and (max-width: 767px) {
  .p-lp-register {
    padding: 80px 0;
  }
}
.p-lp-register_frame {
  position: relative;
  padding: 80px 20px;
  margin: 10px;
  background-image: linear-gradient(-45deg, #252532, #3b3b4e 50%, #252532);
}
@media screen and (max-width: 767px) {
  .p-lp-register_frame {
    padding: 40px 0;
    margin: 5px;
  }
}
.p-lp-register_frame::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: -1;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-color: #d9d9d9;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  transition: all 2s ease;
}
@media screen and (max-width: 767px) {
  .p-lp-register_frame::before {
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
  }
}
.p-lp-register_frame_deco_01 {
  position: absolute;
  top: -5px;
  transform: translateY(-50%);
  right: 6%;
  width: 120px;
  width: clamp(9rem, 8.4033613445vw, 12rem);
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-lp-register_frame_deco_01 {
    width: 80px;
    top: -2.5px;
    right: 0;
  }
}
.p-lp-register_frame_deco_02 {
  position: absolute;
  bottom: -5px;
  transform: translateY(50%);
  left: 6%;
  width: 120px;
  width: clamp(9rem, 8.4033613445vw, 12rem);
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-lp-register_frame_deco_02 {
    width: 80px;
    bottom: -2.5px;
    left: 0;
  }
}
.p-lp-register.is-show .p-lp-register_frame::before {
  webkit-clip-path: inset(0);
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
.p-lp-register.is-show .p-lp-register_frame_deco_01,
.p-lp-register.is-show .p-lp-register_frame_deco_02 {
  animation: blinking 1s ease-in-out forwards;
  animation-delay: 0.5s;
}
@keyframes blinking {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.p-lp-register .l-inner {
  max-width: var(--w-solid-base);
}
.p-lp-register_head {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-lp-register_head {
    margin-bottom: 2.5rem;
  }
}
.p-lp-register_head_sub {
  position: relative;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.06em;
  padding: 25px 20px;
  margin-bottom: 4.5rem;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-lp-register_head_sub {
    font-size: 1.4rem;
    padding: 10px 0;
    margin-bottom: 2.2rem;
    border-top-width: 2px;
    border-bottom-width: 2px;
  }
}
.p-lp-register_head_sub::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 18px);
  position: absolute;
  top: 9px;
  left: 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-lp-register_head_sub::before {
    height: calc(100% - 8px);
    top: 4px;
  }
}
.p-lp-register_head_title {
  font-size: 3.2rem;
  font-size: clamp(2rem, 2.2393282015vw, 3.2rem);
  text-align: center;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-lp-register_head_title {
    font-size: 1.8rem;
    line-height: 2;
  }
}
.p-lp-register p {
  font-size: 2rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-lp-register p {
    font-size: 1.4rem;
  }
}
.p-lp-register_sub-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  margin-top: 5.5rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-lp-register_sub-title {
    gap: 0.4em;
    font-size: 1.4rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
}
.p-lp-register_sub-title::before, .p-lp-register_sub-title::after {
  content: "";
  flex-grow: 1;
  display: block;
  height: 1px;
  background: currentColor;
}
.p-lp-register_list {
  display: flex;
  justify-content: space-evenly;
  gap: 40px 3%;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-lp-register_list {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }
}
.p-lp-register_list li {
  counter-increment: mycounter;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 240px;
  width: clamp(18rem, 20vw, 24rem);
  aspect-ratio: 1;
  border: 2px solid #fff;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-lp-register_list li {
    width: 100%;
    aspect-ratio: unset;
    border-radius: 0;
    padding: 0.5em;
  }
}
.p-lp-register_list li span {
  font-size: 2rem;
  font-size: clamp(1.6rem, 1.6666666667vw, 2rem);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-lp-register_list li span {
    font-size: 1.4rem;
  }
}
.p-lp-register_list li:before {
  content: counter(mycounter, decimal-leading-zero);
  font-family: "Cormorant Infant", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 4rem;
  font-size: clamp(2.8rem, 3.3333333333vw, 4rem);
  text-align: center;
  line-height: 1;
  margin-bottom: 0.3em;
}
@media screen and (max-width: 767px) {
  .p-lp-register_list li:before {
    font-size: 1.8rem;
  }
}
.p-lp-register .c-btn_wrap {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-lp-register .c-btn_wrap {
    margin-top: 2rem;
  }
}

/*		下層ページ
-----------------------------------------------------*/
/*		404ページ
-----------------------------------------------------*/
.p-404 {
  background: #f7f6f2;
  padding: 90px 0 60px;
}
.p-404 .p-404-mv {
  width: 100%;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-404 .p-404-mv .c-title_l {
  text-align: center;
  font-weight: bold;
}
.p-404 .p-404-mv .c-title_l span {
  font-size: 32px;
  color: #99b521;
}
.p-404 .p-404-mv .c-title_l h1 {
  margin: 30px 0;
  font-size: 32px;
  color: #000000;
}
.p-404 .p-404-mv p {
  text-align: center;
  font-size: 16px;
  line-height: 2;
}
.p-404 .p-404-mv .c-btn_wrap {
  margin: 96px auto 0;
}

/*.p-404*/
@media screen and (max-width: 767px) {
  .p-404 .p-404-mv .c-title_l {
    font-size: 20px;
  }
  .p-404 .p-404-mv .c-title_l span {
    font-size: 20px;
  }
  .p-404 .p-404-mv .c-title_l h1 {
    font-size: 18px;
  }
  .p-404 .p-404-mv p {
    font-size: 14px;
  }
  .p-404 .p-404-mv p .is_sp {
    display: block;
  }
  .p-404 .p-404-mv .c-link_btn {
    width: 100%;
  }
  .p-404 .p-404-mv .c-link_btn a {
    font-size: 1.6rem;
  }
  /*.p-404*/
}
/*max-width: 600px*/