@charset "UTF-8";
/******************************************************************
layout - top-visual
******************************************************************/
.l-top-visual {
  position: relative;
}
.l-top-visual > img {
  width: 100%;
}
.l-top-visual__inner {
  position: absolute;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #fff;
}
.l-top-visual__title {
  padding: 0 0 5vw 5vw;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.05;
  font-size: 8.5rem; /* 85px -> 8.5rem */
}
@media screen and (max-width: 1140px) {
  .l-top-visual__title {
    font-size: 7.4561403509vw;
  }
}
@media screen and (max-width:767px) {
  .l-top-visual__title {
    padding: 0 0 8vw 5vw;
    font-size: 14.65vw;
  }
}
.l-top-visual__title small {
  margin-top: 0.6em;
  display: block;
  font-size: 2.2rem; /* 22px -> 2.2rem */
}
@media screen and (max-width: 1140px) {
  .l-top-visual__title small {
    font-size: 1.9298245614vw;
  }
}
@media screen and (max-width:767px) {
  .l-top-visual__title small {
    font-size: 4.2vw;
  }
}
.l-top-visual figure picture {
  display: block;
  position: relative;
  height: 100%;
}
.l-top-visual figure picture::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 40%;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
.l-top-visual__scroll-wrap {
  position: absolute;
  bottom: 0;
  right: 5vw;
}
@media screen and (max-width:767px) {
  .l-top-visual__scroll-wrap {
    right: 5vw;
  }
}
.l-top-visual {
  /* ↓ここはアニメーション計算に関わるので px のまま維持 */
}
.l-top-visual__scroll {
  line-height: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 155px; /* KEEP PX */
  position: relative;
}
@media screen and (max-width:767px) {
  .l-top-visual__scroll {
    padding-bottom: 100px; /* KEEP PX */
  }
}
.l-top-visual__scroll::after {
  position: absolute;
  content: "";
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
  top: 0;
  left: -1px;
  width: 1px;
  height: 0;
  background-color: #fff;
  -webkit-animation: visual-scroll 4s ease infinite;
          animation: visual-scroll 4s ease infinite;
  -webkit-animation-delay: 2.4s !important;
          animation-delay: 2.4s !important;
}

@-webkit-keyframes visual-scroll {
  0% {
    height: 0;
    top: 0;
  }
  50% {
    height: 100%;
    top: 0;
  }
  100% {
    height: 0;
    top: 100%;
  }
}

@keyframes visual-scroll {
  0% {
    height: 0;
    top: 0;
  }
  50% {
    height: 100%;
    top: 0;
  }
  100% {
    height: 0;
    top: 100%;
  }
}
/******************************************************************
layout - parallax-sticky
******************************************************************/
.l-parallax-sticky {
  position: relative;
}
.l-parallax-sticky__item {
  position: sticky;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  color: #fff;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0 5vw 5vw;
}
@media screen and (max-width:767px) {
  .l-parallax-sticky__item {
    min-height: 60vh;
    padding: 0 0 5vw 5vw;
  }
}
.l-parallax-sticky__item:not(:last-child) {
  margin-bottom: 3rem;
}
@media screen and (max-width:767px) {
  .l-parallax-sticky__item:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.l-parallax-sticky__copy {
  line-height: 2;
}
@media screen and (max-width:767px) {
  .l-parallax-sticky__copy {
    font-size: 1.4rem;
  }
}

/******************************************************************
project - concept
******************************************************************/
.p-concept {
  display: grid;
  grid-template-columns: 56% 1fr;
  grid-template-areas: "head button" "img1 img2" "img3 img2";
  gap: 0 6rem;
}
@media screen and (max-width: 1140px) {
  .p-concept {
    gap: 4rem 5.2631578947vw;
  }
}
@media screen and (max-width:1024px) {
  .p-concept {
    grid-template-columns: 1fr;
    grid-template-areas: "img1" "img2" "head" "button" "img3";
    gap: 0 2rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-concept__head {
  grid-area: head;
}
@media screen and (max-width:1024px) {
  .p-concept__head {
    margin-top: 3rem;
  }
}
.p-concept__button {
  grid-area: button;
}
@media screen and (max-width:1024px) {
  .p-concept__button {
    margin-top: 2.5rem;
  }
}
.p-concept__button > *:not(:last-child) {
  margin-bottom: 1rem;
}
.p-concept__img1 {
  grid-area: img1;
  margin-top: 4rem;
}
@media screen and (max-width:1024px) {
  .p-concept__img1 {
    margin-top: 0;
    margin-bottom: 15vw;
    margin-right: 35vw;
  }
}
.p-concept__img1 img {
  width: 80%;
  border-radius: 6px;
}
@media screen and (max-width:1024px) {
  .p-concept__img1 img {
    width: 100%;
  }
}
.p-concept__img2 {
  grid-area: img2;
  align-self: center;
}
@media screen and (max-width:1024px) {
  .p-concept__img2 {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-left: 20vw;
    margin-right: -2.4rem;
  }
}
.p-concept__img2 img {
  border-radius: 6px;
}
.p-concept__img3 {
  grid-area: img3;
  margin-top: 10rem;
  margin-left: -20%;
}
@media screen and (max-width:1024px) {
  .p-concept__img3 {
    margin-top: 3rem;
    margin-left: -2.4rem;
  }
}
.p-concept__img3 img {
  border-radius: 6px;
}
@media screen and (max-width:1024px) {
  .p-concept__img3 img {
    width: 98%;
  }
}
.p-concept__text {
  font-size: 1.5rem;
  line-height: 2;
}

/******************************************************************
project - topics
******************************************************************/
.p-topics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width:767px) {
  .p-topics {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-topics__head {
  margin-right: 8rem;
}
@media screen and (max-width: 1140px) {
  .p-topics__head {
    margin-right: 7.0175438596vw;
  }
}
@media print, screen and (min-width: 768px) {
  .p-topics__head > *:not(:last-child) {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width:767px) {
  .p-topics__head {
    margin-right: 0;
    margin-bottom: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media screen and (max-width:767px) {
  .p-topics__body .swiper-slide {
    width: 27rem;
  }
}
.p-topics__body .swiper-slide .u-hover-reflection__target {
  overflow: hidden;
  border-radius: 5px;
}

/******************************************************************
project - bridalfair
******************************************************************/
.p-bridalfair {
  display: grid;
  grid-template-columns: 1fr fit-content(20rem);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  grid-template-areas: "head button" "body body";
  gap: 3rem 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width:767px) {
  .p-bridalfair {
    grid-template-columns: 100%;
    grid-template-areas: "head" "body" "button";
    gap: 3rem 2rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-bridalfair__head {
  grid-area: head;
}
.p-bridalfair__button {
  grid-area: button;
}
@media screen and (max-width:767px) {
  .p-bridalfair__button {
    text-align: center;
  }
}
.p-bridalfair__body {
  grid-area: body;
}

/******************************************************************
project - story
******************************************************************/
.p-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24rem;
  grid-template-rows: fit-content(10%) fit-content(10%) minmax(0, 1fr);
  grid-template-areas: "head img2" "img1 img2" "img1 button";
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 8rem;
}
@media screen and (max-width: 1140px) {
  .p-story {
    gap: 4rem 7.0175438596vw;
  }
}
@media screen and (max-width:767px) {
  .p-story {
    grid-template-columns: 100%;
    grid-template-areas: "head" "img1" "button" "img2";
    gap: 3rem 2rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-story__head {
  grid-area: head;
  margin-bottom: 6rem;
}
@media screen and (max-width:767px) {
  .p-story__head {
    margin-bottom: 0;
  }
}
.p-story__button {
  grid-area: button;
  align-self: center;
}
.p-story__button > *:not(:last-child) {
  margin-bottom: 1rem;
}
.p-story__img1 {
  grid-area: img1;
}
.p-story__img1 img {
  border-radius: 6px;
}
.p-story__img2 {
  grid-area: img2;
  align-self: center;
}
@media screen and (max-width:767px) {
  .p-story__img2 {
    justify-self: flex-end;
  }
}
.p-story__img2 img {
  border-radius: 6px;
}
.p-story__text {
  font-size: 1.5rem;
  line-height: 2;
}

/******************************************************************
project - plan
******************************************************************/
.p-plan {
  display: grid;
  grid-template-columns: 1fr fit-content(20rem);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  grid-template-areas: "head button" "body body";
  gap: 3rem 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width:767px) {
  .p-plan {
    grid-template-columns: 100%;
    grid-template-areas: "head" "body" "button";
    gap: 3rem 2rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-plan__head {
  grid-area: head;
}
.p-plan__button {
  grid-area: button;
}
@media screen and (max-width:767px) {
  .p-plan__button {
    text-align: center;
  }
}
.p-plan__body {
  grid-area: body;
}

/******************************************************************
project - report
******************************************************************/
.p-report {
  display: grid;
  grid-template-columns: 1fr fit-content(20rem);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  grid-template-areas: "head button" "body body";
  gap: 3rem 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-report__head {
  grid-area: head;
}
.p-report__button {
  grid-area: button;
}
.p-report__body {
  grid-area: body;
}
.p-report__body .swiper-slide {
  width: 30rem;
}
@media screen and (max-width:767px) {
  .p-report__body .swiper-slide {
    width: 27rem;
  }
}
.p-report__body .swiper-slide .u-hover-reflection__target {
  overflow: hidden;
  border-radius: 5px;
}

/******************************************************************
project - info
******************************************************************/
.p-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width:767px) {
  .p-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-info__head {
  margin-right: 11rem;
}
@media screen and (max-width: 1140px) {
  .p-info__head {
    margin-right: 9.649122807vw;
  }
}
@media print, screen and (min-width: 768px) {
  .p-info__head > *:not(:last-child) {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width:767px) {
  .p-info__head {
    margin-right: 0;
    margin-bottom: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

/******************************************************************
project - gallery
******************************************************************/
.p-gallery {
  display: grid;
  grid-template-columns: 1fr fit-content(20rem);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  grid-template-areas: "head button" "body body";
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6rem 2rem;
}
@media screen and (max-width:767px) {
  .p-gallery {
    gap: 3rem 2rem;
  }
}
.p-gallery__head {
  grid-area: head;
  position: relative;
  z-index: 1;
}
.p-gallery__button {
  grid-area: button;
  position: relative;
  z-index: 1;
}
.p-gallery__body {
  grid-area: body;
}

/******************************************************************
project - club
******************************************************************/
.p-club {
  max-width: 90rem;
  margin-inline: auto;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
}
.p-club__body > *:not(:last-child) {
  margin-bottom: 4rem;
}
.p-club__hgroup {
  position: relative;
}
.p-club__heading {
  position: absolute;
  z-index: 1;
  bottom: 0;
  margin-bottom: 0.2em;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 5rem;
}
@media screen and (max-width:767px) {
  .p-club__heading {
    width: 100%;
    text-align: center;
    font-size: 3.6rem;
  }
}
.p-club__heading span {
  display: inline-block;
}
.p-club__text {
  line-height: 2;
  font-size: 1.5rem;
}
@media screen and (max-width:767px) {
  .p-club__text {
    font-size: 1.4rem;
  }
}
.p-club__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem 5rem;
}
.p-club__nav a {
  position: relative;
  text-decoration: none;
  font-size: 1.7rem;
  padding: 0.4em 0;
}
.p-club__nav a::before {
  position: absolute;
  content: "";
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #58453a;
  opacity: 0.25;
}
.p-club__nav a::after {
  position: absolute;
  content: "";
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
  bottom: 0;
  left: 0;
  width: 0.9rem;
  -webkit-transition-property: width;
  transition-property: width;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  border-bottom: 1px solid #58453a;
  opacity: 0.6;
}
@media (any-hover: hover) {
  .p-club__nav a:hover::after {
    width: 100%;
  }
}
.p-club__nav a:not(.js-dialog):focus::after {
  width: 100%;
}
.p-club__nav a > span {
  display: inline-block;
  padding-left: 2rem;
}
.p-club__nav a > span::before {
  position: absolute;
  content: "";
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  background-color: #58453a;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}

/******************************************************************
project - guests
******************************************************************/
.p-guests {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-areas: "head button" "body body";
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6rem 2rem;
}
@media screen and (max-width:767px) {
  .p-guests {
    grid-template-areas: "head head" "button button" "body body";
    gap: 3rem 2rem;
  }
}
.p-guests__head {
  grid-area: head;
  position: relative;
  z-index: 1;
}
.p-guests__button {
  grid-area: button;
  position: relative;
  z-index: 1;
}
.p-guests__button p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 2;
}
@media print, screen and (min-width: 768px) {
  .p-guests__button p {
    margin-left: auto;
  }
}
.p-guests__button a {
  text-decoration: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
@media (any-hover: hover) {
  .p-guests__button a:hover {
    opacity: 0.7;
  }
}
.p-guests__button a:not(.js-dialog):focus {
  opacity: 0.7;
}
.p-guests__button img {
  width: 1.5rem;
  margin-right: 0.8rem;
}
.p-guests__body {
  grid-area: body;
}/*# sourceMappingURL=top.css.map */