@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-origin: border-box;
}
@font-face {
  font-family: "Futura";
  src: url("../font/futura-book.ttf") format("opentype");
  font-display: swap;
}
:root {
  /* Font */
  --font-family--primary: "Noto Serif JP", serif;
  --font-family--secondary: "Futura", serif;
  --font-family--extra-1: "Passions Conflict", cursive;
  --font-family--extra-2: "Waterfall", cursive;

  font-size: 10px;

  /* Colors */
  --color-primary-text: #252525;
  --color-secondary-text: #333;
  --color-teritory-text: #000;
  --color-primary: #193e9b;
  --color-secondary: #0776d7;
  --color-teritory: #887d45;
  --color-extra: #d9d9d9;
  --color-white: #fff;
}
html {
  scroll-behavior: smooth;
}
body {
  display: block;
  overflow-x: hidden;
  width: 100%;
  font-style: normal;
  font-weight: 900;
  font-family: var(--font-family--primary);
  color: var(--color-body);
  background-color: var(--color-white);
  position: relative;
}
/*====================================*/
/* base contents */
/*====================================*/
p {
  font-size: 1.6rem;
  line-height: 2;
}
a {
  text-decoration: none;
}
ul {
  list-style-type: none;
}
ul li {
  color: currentColor;
}
img {
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  display: block;
}
.animate,
.animate-delay {
  opacity: 0;
  transition: all 0.8s ease-in-out;
  position: relative;
}
.animate-delay {
  transition-delay: 0.5s;
}
.slide-up {
  transform: translateY(100px);
}
.slide-down {
  transform: translateY(-100px);
}
.slide-left {
  transform: translateX(100px);
}
.slide-right {
  transform: translateX(-100px);
}
.animate.active {
  opacity: 1;
  transform: translate(0, 0);
}
.gallery_img.animate {
  transition-delay: calc(var(--delay) * 0.1s);
}
/* ------------------------
    edit contents
------------------------- */
/* 指定フォント ここから */

/* ----pc,sp/on_off---- */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
@media (max-width: 991px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}

/*********************************
1. Header
*********************************/
header {
  position: relative;
}
.lp-logo {
  padding: 78px 60px 89px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url(../img/kv.jpg) lightgray -597px -114.706px / 418.133% 205.493% no-repeat;
  background-size: cover;
  background-position: center;
}

.lp-intro {
  position: relative;
}
/* Scroll animation classes - use .scroll-animate on any element */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger child animations - use .animate-child on child elements */
.animate-child {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-animate.animate-in .animate-child:nth-child(1) {
  transition-delay: 0.2s;
}
.scroll-animate.animate-in .animate-child:nth-child(2) {
  transition-delay: 0.4s;
}
.scroll-animate.animate-in .animate-child:nth-child(3) {
  transition-delay: 0.6s;
}
.scroll-animate.animate-in .animate-child:nth-child(4) {
  transition-delay: 0.8s;
}
.scroll-animate.animate-in .animate-child:nth-child(5) {
  transition-delay: 1s;
}
.scroll-animate.animate-in .animate-child {
  opacity: 1;
  transform: translateY(0);
}
.lp-logo picture {
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.logo-shine-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.logo-shine-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}
.shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3) 70%, transparent 100%);
  transform: skewX(-20deg);
  z-index: 1;
  pointer-events: none;
}
.lp-intro .lp-intro_img {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.lp-intro .lp-intro_img::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(53, 53, 53, 0.6) 0%, rgba(53, 53, 53, 0.6) 100%);
  z-index: 1;
  pointer-events: none;
}
.lp-intro .lp-intro_img img {
  min-height: 232px;
}
.lp-intro .lp-intro_text {
  position: absolute;
  padding: 0 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: var(--color-white);
  z-index: 4;
}
.lp-intro .lp-intro_text p {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 2.4;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.65);
}
/* .lp-intro .lp-intro_text h2 {
  text-shadow: 0 0 18px #000;
  font-size: 2.4rem;
  line-height: 1.7;
  margin-bottom: 24px;
} */
.c_path-1,
.c_path-2 {
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.c_path-2 {
  z-index: 3;
}
.c_path-1::before,
.c_path-1::after {
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #887d45;
}
.c_path-2::before,
.c_path-2::after {
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
}
.c_path-1::before {
  left: 0;
  clip-path: polygon(0 0, 0% 100%, 4% 0);
}
.c_path-1::after {
  right: 0;
  clip-path: polygon(100% 0, 96% 100%, 100% 100%);
}
.c_path-2::before {
  left: 0;
  clip-path: polygon(0 0, 4% 100%, 0 100%);
}
.c_path-2::after {
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 96% 0);
}
@media (min-width: 991px) {
  .lp-logo picture {
    padding: 129px 0 198px;
    width: fit-content;
    margin: auto;
  }
  .c_path-1::before {
    clip-path: polygon(0 0, 0% 100%, 6% 0);
  }
  .c_path-1::after {
    clip-path: polygon(100% 0, 94% 100%, 100% 100%);
  }
  .c_path-2::before {
    clip-path: polygon(0 0, 6% 100%, 0 100%);
  }
  .c_path-2::after {
    clip-path: polygon(100% 0, 100% 100%, 94% 0);
  }
  .lp-intro .lp-intro_img {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .lp-intro .lp-intro_img img {
    min-height: 350px;
  }
  .lp-intro .lp-intro_text {
    max-width: 800px;
    top: 50%;
  }
}
/*********************************
2. Lp-memorial
*********************************/
.lp-memorial {
  position: relative;
}
.lp-memorial .main_title {
  padding: 17px 0 126px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url(../img/memo-bg_1.jpg) lightgray -14px -139.621px / 100.937% 217.623% no-repeat;
  background-size: cover;
  background-position: center;
}
.lp-memorial .main_title p,
.thoughts_content--inner .title_circle {
  width: fit-content;
  margin: auto;
  max-width: 32%;
}
/* .thoughts_content--inner .title_circle {
  width: fit-content;
  min-width: 115px;
  text-align: center;
  padding: 38px 5px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1.7;
  margin: auto;
  color: var(--color-teritory-text);
  background-color: var(--color-extra);
} */
.lp-memorial .detail {
  transform: translateY(-82px);
}
.lp-memorial .detail .detail_img {
  position: relative;
  background-color: var(--color-white);
  border-radius: 80px 0 0 0;
  padding: 0 20px;
}
.detail .detail_img .title {
  text-align: right;
  padding: 24px 0 12px;
  font-family: var(--font-family--secondary);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(180deg, rgba(215, 78, 117, 0.4) 0%, rgba(215, 128, 7, 0.4) 37.02%, rgba(55, 187, 177, 0.4) 70.67%, rgba(31, 160, 138, 0.4) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.detail .detail_img .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 54.7%;
  height: 0;
  overflow: hidden;
  max-width: 1080px;
}
.detail .detail_img .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.detail .detail_img .text-pop {
  position: relative;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail .detail_img .text-pop p {
  width: fit-content;
  padding: 0 8px;
  background-color: var(--color-teritory);
  color: var(--color-white);
  line-height: 2.1;
  font-weight: 700;
}
.detail .detail_img .text-pop p.sp {
  font-size: 1.4rem;
}
.detail .detail_text {
  position: relative;
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.detail .detail_text::before,
.detail .detail_text::after {
  position: absolute;
  content: "";
  display: block;
  width: 300px;
  height: 23px;
  background: url(../img/svg/memo_vec-1.svg) no-repeat;
  background-size: cover;
  left: 50%;
  transform: translateX(-50%);
}
.detail .detail_text::before {
  top: 0;
}
.detail .detail_text::after {
  bottom: 0;
  transform: translateX(-50%) rotate(180deg);
}
/* 2.2 Lp-memorial 02 */
.lp-memorial .lp-memorial_02 .main_title {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url(../img/memo-bg_2.jpg) lightgray -14px -139.621px / 100.937% 217.623% no-repeat;
  background-size: cover;
  background-position: center;
}
.lp-memorial .lp-memorial_02 .detail .detail_img {
  border-radius: 0 80px 0 0;
}
.lp-memorial_02 .detail .detail_img .title {
  text-align: left;
}
.lp-memorial_02 .detail .detail_img .text-pop p {
  background-color: var(--color-secondary);
  padding: 0 16px;
}
.lp-memorial_02 .detail .detail_text::before,
.lp-memorial_02 .detail .detail_text::after {
  background: url(../img/svg/memo_vec-2.svg) no-repeat;
  background-size: cover;
}
@media (min-width: 991px) {
  .lp-memorial .main_title {
    padding: 57px 0 212px;
  }
  .lp-memorial .main_title h3,
  .thoughts_content--inner .title_circle {
    min-width: 232px;
    font-size: 2.4rem;
    padding: 75px 9px;
  }
  .lp-memorial .detail {
    max-width: 1280px;
    margin: auto;
    transform: translateY(-148px);
  }
  .detail .detail_img .title {
    padding: 49px 0 57px;
    font-size: 8rem;
  }
  .lp-memorial .detail .detail_img {
    padding: 0 85px;
    padding-bottom: 180px;
    border-radius: 320px 32px 0 0;
  }
  .lp-memorial .detail .detail_img img {
    padding: 0 85px 182px;
  }
  .detail .detail_img .text-pop {
    position: absolute;
    bottom: 16px;
    margin: 0;
  }
  .detail .detail_img .text-pop p {
    font-size: 3.2rem;
  }
  .detail .detail_img .text-pop p.pc {
    font-size: 2.4rem;
  }
  .detail .detail_text {
    max-width: 1080px;
    margin: auto;
    flex-direction: row;
  }
  .detail .detail_text p {
    flex: 1;
  }
  .detail .detail_text p:first-child {
    max-width: 502px;
  }
  .detail .detail_text p:last-child {
    min-width: 525px;
  }
  .lp-memorial .lp-memorial_02 .detail .detail_img {
    border-radius: 32px 320px 0 0;
  }
  .lp-memorial .main_title p,
  .thoughts_content--inner .title_circle {
    max-width: 100%;
  }
}
/*********************************
3. Events
*********************************/
.lp-events {
  position: relative;
}
/*  */
.lp-events h3 {
  padding: 40px 20px 32px;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.7;
  color: var(--color-primary);
}
.lp-events h3 span {
  position: relative;
  display: inline-block;
  font-family: var(--font-family--extra-1);
  font-size: 3.5rem;
  font-weight: 400;
  transform: translateY(-15px) rotate(-6.853deg);
  padding-left: 12px;
}
.lp-events h3 span::after,
.thoughts h3 span::after {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/svg/h3_vector-sp.svg) no-repeat;
  width: 105.64px;
  height: 29.116px;
  transform: rotate(6.678deg);
  bottom: -10px;
}
/*  */
.events_content {
  position: relative;
}
.events_content:before {
  position: absolute;
  content: "";
  left: 0;
  width: 85%;
  height: 100%;
  z-index: 1;
  border-radius: 0 300px 0 0;
  background: var(--02, linear-gradient(254deg, #c7e8fa 2.73%, #fef4e5 47.62%, #ffdfae 100%));
}
.events_content .content-1 {
  z-index: 2;
}
/*  */
.events_content .content-1 .title {
  margin-bottom: 38px;
}
.events_content .content-1 .title span {
  display: block;
  width: fit-content;
  font-size: 2.4rem;
  color: var(--color-primary-text);
  font-weight: 700;
  line-height: 2.1;
  background-color: var(--color-white);
  padding: 0 12px;
}
.events_content .content-1 .title span:first-child {
  margin-bottom: 14px;
}
.events_content .content-1 p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--color-primary-text);
}
.content-1 .text {
  margin-bottom: 32px;
}
.content-1 .text p:first-child {
  margin-bottom: 16px;
}
.btn {
  border-radius: 40px;
  background-color: var(--color-primary);
  width: fit-content;
  margin: auto;
  transition: background-color 0.5s ease;
}
.btn a {
  display: block;
  padding: 10px 140px;
  color: var(--color-white);
  font-size: 2rem;
  font-family: var(--font-family--primary);
  font-weight: 700;
  line-height: 30.2px;
  letter-spacing: 0.6px;
  transition: color 0.5s ease;
}
.btn:hover {
  background-color: var(--color-white);
}
.btn a:hover {
  color: var(--color-primary);
}
.btn a:hover svg {
  fill: var(--color-primary);
}
.events_content .content-2 img {
  border-radius: 120px 0 0 0;
}
/*  */
.events_content--inner {
  display: grid;
  grid-template-areas: "left right";
  grid-template-columns: 0.65fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 0 20px;
}
.events_content .content-2 {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .events_content--inner {
    grid-template-areas:
      "top"
      "bottom";
    grid-template-columns: 1fr;
    margin: 0;
    gap: 0;
    padding-bottom: 69px;
  }
  .events_content .content-1 {
    grid-area: bottom;
  }
  .events_content .content-2 {
    grid-area: top;
    padding: 69px 0 11px;
  }
  .events_content:before {
    width: 100%;
    /* height: calc((100% - 130px)); */
    height: 100%;
    border-radius: 0 80px 0 0;
  }
}
@media (min-width: 1080px) {
  .events_content--inner {
    margin-left: calc((100% - 1110px) / 2);
  }
}
@media (min-width: 1120px) {
  .events_content--inner {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .events_content--inner {
    margin-right: 0;
  }
  .events_content .content-2 {
    padding-right: 0;
  }
  .events_content .content-2 img {
    min-height: 604px;
  }
}
@media (min-width: 991px) {
  .lp-events {
    padding-top: 40px;
  }
  .lp-events h3 {
    position: absolute;
    top: -55px;
    margin-left: calc((100% - 1110px) / 2);
    padding: 0;
    font-size: 10rem;
    z-index: 3;
  }
  .lp-events h3 span {
    font-size: 10rem;
    transform: translateY(-40px) rotate(-6.853deg);
  }
  .lp-events h3 span::after,
  .thoughts h3 span::after {
    width: 302.492px;
    height: 83.371px;
    bottom: -20px;
    background: url(../img/svg/h3_vector-pc.svg) no-repeat;
  }
  .events_content--inner {
    padding: 135px 0 77px;
  }
  .events_content .content-1 .title span {
    font-size: 4.5rem;
  }
}
@media (min-width: 1570px) {
  .events_content .content-1 .title span {
    font-size: 4.8rem;
  }
}
/*********************************
4. Thoughts
*********************************/
.thoughts {
  position: relative;
  padding: 92px 0 80px;
}
.thoughts h3 {
  padding: 0 24px;
  font-size: 2.4rem;
  color: #34b7ab;
  font-weight: 900;
  line-height: 1.6;
}
.thoughts h3 span {
  position: relative;
  display: inline-block;
  padding-left: 33px;
  font-size: 4.35rem;
  font-family: var(--font-family--extra-2);
  font-weight: 400;
  line-height: 1.7;
  transform: translateY(-30px) rotate(-10.455deg);
}
.thoughts_content {
  padding: 0 24px;
}
.thoughts_content--inner .text {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.thoughts_content--inner .text p:first-child,
.thoughts_content--inner .text p:last-child {
  color: var(--color-primary-text);
  line-height: 1.7;
}
.thoughts_content--inner .text p:first-child {
  font-size: 2rem;
}
.thoughts_content--inner .text p:last-child {
  font-size: 1.4rem;
}
.thoughts_content--inner:last-child {
  padding-top: 64px;
}
.thoughts_content--inner .title_circle {
  max-width: 50%;
}
@media (min-width: 991px) {
  .thoughts h3 {
    padding-left: 0;
    max-width: 1080px;
    margin: auto;

    font-size: 4.8rem;
    line-height: 1.7;
  }
  .thoughts h3 span {
    font-size: 74.331px;
  }
  .thoughts h3 span::after {
    width: 154.401px;
    height: 24.737px;
    bottom: 5px;
    background-size: cover;
  }
  .thoughts_content {
    max-width: 850px;
    margin: auto;
  }
  .thoughts_content--inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  .thoughts_content--inner .text p:first-child {
    font-size: 2.4rem;
  }
  .thoughts_content--inner .text p:last-child {
    font-size: 1.6rem;
  }
  .thoughts_content--inner {
    padding-top: 64px;
  }
  .thoughts_content--inner:last-child {
    padding-top: 88px;
  }
}
/*********************************
5. Footer
*********************************/
footer {
  padding: 24px;
  background: #f7f7f7;
}
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.footer_addess {
  margin-bottom: 48px;
}
.footer_addess p {
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-secondary-text);
}
.footer_addess p:first-child {
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 32px;
}
.footer_addess p:last-child {
  font-size: 1.6rem;
  letter-spacing: 0.8px;
}
.cta,
.hotel_cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.cta img {
  max-width: 48px;
}
.cta a {
  transition: opacity 0.5s ease;
}
.hotel_cta a {
  position: relative;
  color: var(--color-secondary-text);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.7px;
  transition: opacity 0.5s ease;
}
.hotel_cta a:first-child:after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -16px;
  width: 24px;
  border-bottom: 0.5px solid var(--color-secondary-text);
}
.hotel_cta a:hover,
.cta a:hover {
  opacity: 0.7;
}
@media (min-width: 991px) {
  .footer_addess p:first-child {
    font-size: 2.4rem;
    letter-spacing: 1.2px;
  }
  .footer_addess p:last-child {
    font-size: 1.8rem;
    letter-spacing: 0.9px;
  }
  .hotel_cta {
    flex-direction: row;
    gap: 0;
  }
  .hotel_cta a {
    padding: 0 16px;
    border-left: 1px solid var(--color-secondary-text);
    border-right: 1px solid var(--color-secondary-text);
  }
  .hotel_cta a:first-child {
    border-right: none;
  }
  .hotel_cta a:first-child:after {
    content: none;
  }
}
/*-----------------------------
5.2. Footer copyright
-----------------------------*/
.footercopyright {
  padding: 12px 0;
  font-weight: 400;
  font-family: var(--font-family--primary);
  color: #f7f7f7;
  background-color: var(--color-primary);
  letter-spacing: 1.2px;
  text-align: center;
}
.footercopyright p {
  font-size: 1.2rem;
}

@media (min-width: 991px) {
  .footercopyright {
    line-height: 17px;
    letter-spacing: 0.2px;
  }
  .footercopyright p {
    margin: 0 auto;
    max-width: 1080px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.7;
  }
}
/*********************************
7. Back top
*********************************/
.pageTop a {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 14px;
  bottom: 20px;
  z-index: 10;
  background-color: var(--color-white);
  filter: drop-shadow(0px 3px 10px #3d260440);
}
.pageTop a:hover {
  background-color: var(--color-teritory);
}

.pageTop a img {
  width: 12px;
  transform: rotate(-90deg);
}

@media (max-width: 768px) {
  .pageTop a {
    width: 45px;
    height: 45px;
    right: 20px;
  }
}
/*********************************
8. Confetti Animation
*********************************/
#confetti-container {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  z-index: 999999 !important;
  overflow: visible !important;
}

.confetti-piece {
  position: absolute !important;
  pointer-events: none !important;
  will-change: transform;
}
