@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Noto+Serif+JP:wght@400;500;600&family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Arizonia&family=Dancing+Script:wght@500;600&family=Great+Vibes&family=Parisienne&family=WindSong:wght@400;500&display=swap");
/*transitionの記述を追加*/
*,
::after,
::before {
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.3rem;
  font-family: "Noto Serif JP", serif;
  color: #484848;
  letter-spacing: 0.14rem;
}
@media (min-width: 960px) {
  body {
    font-size: 1.4rem;
  }
}

.container {
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .container {
    width: 79.5%;
  }
}

p {
  margin: 0;
  letter-spacing: 0.14rem;
  line-height: 2.8;
  text-align: justify;
}

p.clamp-p {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}

a:hover {
  opacity: 1;
  transition: all 0.2s ease-in;
}

a:hover {
  opacity: 0.8;
  transition: all 0.2s ease-in;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -3.4rem;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: #484848;
  border-radius: 50%;
  text-align: center;
  opacity: 0.25;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
}

.h1-ttl, .page-h2-ttl {
  font-size: 2rem;
  font-family: "Marcellus", serif;
  letter-spacing: 0.24rem;
  text-align: center;
}
.h1-ttl span, .page-h2-ttl span {
  display: inline-block;
}
@media (min-width: 960px) {
  .h1-ttl, .page-h2-ttl {
    font-size: 2.8rem;
    letter-spacing: 0.34rem;
  }
}

.themes-header {
  height: 6.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  position: fixed;
  width: 100%;
  min-width: 32rem;
  top: 0;
  left: auto;
  z-index: 999;
}

.logo {
  width: 100%;
  max-width: 20rem;
  text-align: left;
  padding-left: 2rem;
  position: fixed;
  z-index: 999;
}
@media (min-width: 960px) {
  .logo {
    padding-left: 6rem;
  }
}
.logo img {
  width: 73px;
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 2rem;
  top: 1.2rem;
  width: 4.2rem;
  height: 4.2rem;
  cursor: pointer;
  text-align: center;
}
@media (min-width: 960px) {
  .hamburger {
    right: 6rem;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 2.8rem;
  height: 0.2rem;
  left: 0.6rem;
  background: #555;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 1.2rem;
}

.hamburger span:nth-child(2) {
  top: 2rem;
}

.hamburger span:nth-child(3) {
  top: 2.8rem;
}

.hamburger.active span:nth-child(1) {
  top: 1.6rem;
  left: 0.6rem;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 1.6rem;
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #000;
  background: #fcfcfc;
  text-align: left;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
}

nav.globalMenuSp ul {
  margin: 10rem auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li:hover {
  opacity: 0.5;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1.2rem 0 1.2rem 4rem;
  text-decoration: none;
  font-size: 1.6rem;
}
nav.globalMenuSp ul li a span {
  font-size: 0.9rem;
  font-family: "Poppins", "メイリオ", Meiryo, sans-serif;
  display: inline-block;
  margin-left: 2rem;
}

nav.globalMenuSp.active {
  transform: translateY(0%);
}

@media (min-width: 960px) {
  .hero-s-dt-flex {
    display: flex;
    justify-content: flex-start;
  }
}

.hero-dt-f-item {
  display: none;
}
@media (min-width: 960px) {
  .hero-dt-f-item {
    position: relative;
    display: flex;
    width: 50%;
  }
}

@media (min-width: 960px) {
  .h-dt-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 960px) {
  .h-dt-logo img {
    display: block;
    width: 15.6rem;
  }
}

.hero-slider-wrap {
  margin-top: 6.5rem;
  pointer-events: none;
}
.hero-slider-wrap .h-slide-item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: calc(100vh - 6.5rem);
  margin: 0;
}
@media (min-width: 960px) {
  .hero-slider-wrap {
    width: 50%;
  }
}
.hero-slider-wrap .h-s-i-1 {
  background-image: url(../images/h-s-i-1.jpg);
}
.hero-slider-wrap .h-s-i-2 {
  background-image: url(../images/h-s-i-2.jpg);
}
.hero-slider-wrap .h-s-i-3 {
  background-image: url(../images/h-s-i-3.jpg);
}
.hero-slider-wrap .h-s-i-4 {
  background-image: url(../images/h-s-i-4.jpg);
}
.hero-slider-wrap .h-s-i-5 {
  background-image: url(../images/h-s-i-5.jpg);
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

@media (min-width: 960px) {
  .hero-s-sp-flex {
    display: none;
  }
}

.hero-s-dt-flex-sample {
  display: none;
}
@media (min-width: 960px) {
  .hero-s-dt-flex-sample {
    display: block;
    margin-top: 6.5rem;
  }
  .hero-s-dt-flex-sample .hero-slider-wrap-sample {
    width: 100%;
  }
  .hero-s-dt-flex-sample .h-slide-item {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 84rem;
    margin: 0;
  }
  .hero-s-dt-flex-sample .h-s-i-dt-1 {
    background-image: url(../images/h-s-i-dt-1.jpg);
  }
  .hero-s-dt-flex-sample .h-s-i-dt-2 {
    background-image: url(../images/h-s-i-dt-2.jpg);
  }
  .hero-s-dt-flex-sample .h-s-i-dt-3 {
    background-image: url(../images/h-s-i-dt-3.jpg);
  }
  .hero-s-dt-flex-sample .h-s-i-dt-4 {
    background-image: url(../images/h-s-i-dt-4.jpg);
  }
  .hero-s-dt-flex-sample .h-s-i-dt-5 {
    background-image: url(../images/h-s-i-dt-5.jpg);
  }
}

.sec-about {
  padding-top: 7rem;
}
@media (min-width: 960px) {
  .sec-about {
    padding-top: 15rem;
  }
}

.subttl {
  margin: 3.5rem auto;
  text-align: center;
  line-height: 1.5;
}
.subttl .st-main {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.subttl .st-sub {
  display: block;
}

.about-p {
  text-align: center;
}
.about-p span {
  display: inline-block;
}
@media (min-width: 960px) {
  .about-p span {
    margin-right: 0.4rem;
  }
}

.sec-service {
  padding-top: 7rem;
}
@media (min-width: 960px) {
  .sec-service {
    padding-top: 15rem;
  }
}

.s-lineup-inner {
  margin-top: 4.5rem;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.s-lineup-slider {
  margin: 0 auto;
  display: flex;
  padding-bottom: 4rem;
}
@media (min-width: 960px) {
  .s-lineup-slider {
    justify-content: center;
  }
}

.service-slide-item {
  margin-left: 2.5rem;
}

.service-slide-item:last-child {
  padding-right: 2.5rem;
}

.service-card-link {
  color: #484848;
  text-decoration: none;
  outline: none;
  display: inline-block;
}
@media (min-width: 960px) {
  .service-card-link {
    transition: all 0.2s ease-in;
  }
  .service-card-link:hover img {
    transform: scale(1.05);
    transition: all 0.2s ease-in;
  }
}

.service-s-card {
  display: flex;
  flex-direction: column;
  width: 32rem;
  height: auto;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 0.2rem;
  background: #fff;
  overflow: hidden;
}

.ssc-img-wrap {
  width: 100%;
  height: 21.2rem;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  position: relative;
}
.ssc-img-wrap img {
  width: 100%;
}

.ssc-txt-ttl {
  margin-top: 4.2rem;
  font-family: "Marcellus", serif;
  font-size: 2rem;
  text-align: center;
}

.ssc-txt-detail {
  margin-top: 2.1rem;
  margin-bottom: 0.4rem;
  height: 3.4rem;
  text-align: center;
  display: block;
}

.ssc-txt-btn {
  margin-top: 2.1rem;
  margin-bottom: 4.2rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: inline-block;
  width: 7.4rem;
  font-family: "Marcellus", serif;
  padding: 0.8rem 2rem 0.8rem 0;
  font-size: 1.2rem;
}
.ssc-txt-btn::before, .ssc-txt-btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  background: #888888;
  width: 100%;
  height: 0.1rem;
  transition: all 0.3s ease-in-out;
}

.ssc-txt-btn::after {
  width: 0;
  background: #fff;
}

.service-card-link:hover .ssc-txt-btn::after {
  width: 100%;
}

.ssc-txt-btn span::after {
  content: "";
  position: absolute;
  background: url(../images/arrow-right.svg) no-repeat;
  background-position: center;
  background-size: contain;
  top: 0.7rem;
  right: -0.18rem;
  width: 1.8rem;
  height: 1.8rem;
  transition: all 0.3s;
}

.service-card-link:hover .ssc-txt-btn span::after {
  right: -1.4rem;
}

.sec-staff {
  padding-top: 7.4rem;
}
@media (min-width: 960px) {
  .sec-staff {
    padding-top: 13rem;
    padding-bottom: 15rem;
  }
}

.staff-view-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stf-view-img {
  overflow: hidden;
  width: 14.4rem;
  height: 14.4rem;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  border-radius: 50%;
  margin-top: 5rem;
}
.stf-view-img img {
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.stf-view-name {
  text-align: center;
  margin-top: 4.2rem;
}

.stf-v-n-main {
  display: block;
  font-size: 1.6rem;
}

.stf-v-n-sub {
  margin-top: 0.4rem;
  font-family: "Marcellus", serif;
  color: #7b7b7b;
}

.stf-view-txt {
  margin-top: 4.2rem;
}
.stf-view-txt p {
  text-align: center;
  line-height: 2.4;
}
.stf-view-txt p span {
  display: inline-block;
}

.sec-contact {
  margin-top: 7.4rem;
  padding: 8rem 0;
  background: url(../images/cct-bg.jpg) no-repeat;
  background-position: top;
  background-size: cover;
}
@media (min-width: 960px) {
  .sec-contact {
    padding: 16rem 0;
  }
}

.contact-box {
  background: #fff;
  padding-top: 4rem;
  padding-bottom: 7rem;
}
@media (min-width: 960px) {
  .contact-box {
    max-width: 82rem;
    margin: 0 auto;
  }
}

.contact-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4rem;
}

.cct-tel {
  font-size: 2.6rem;
  letter-spacing: 0.312rem;
  margin-bottom: 5rem;
}
.cct-tel a {
  color: #484848;
  text-decoration: none;
}
.cct-tel span {
  font-size: 1.3rem;
  display: block;
  text-align: right;
}
.cct-tel span.cct-tel-small {
  display: inline-block;
  margin-right: 0.4rem;
}

.cct-form {
  font-size: 2.6rem;
  letter-spacing: 0.312rem;
}
.cct-form a {
  color: #484848;
  text-decoration: none;
  font-family: "Marcellus", serif;
}
.cct-form::before {
  content: "";
  display: inline-block;
  background: url(../images/mail.svg) no-repeat;
  background-size: contain;
  background-position: center;
  width: 2.6rem;
  height: 2.6rem;
  position: relative;
  top: 0.6rem;
  left: -1rem;
}

.sec-shopview {
  padding-top: 8rem;
}
@media (min-width: 960px) {
  .sec-shopview {
    padding-top: 15rem;
  }
}

.sv-slider-inner {
  margin: 0 auto;
  width: 82%;
  aspect-ratio: 45/34;
}
@media (min-width: 960px) {
  .sv-slider-inner {
    aspect-ratio: 2/1;
  }
}

.sv-slider-item {
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  aspect-ratio: 45/34;
}
@media (min-width: 960px) {
  .sv-slider-item {
    aspect-ratio: 2/1;
  }
}
.sv-slider-item img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sv-s-i-1 img {
  height: 100%;
}

.sv-s-i-2 img {
  height: 100%;
}

.sv-s-i-3 img {
  height: 100%;
}

.info-area {
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
}

.info-txt-1 {
  margin-bottom: 2.4rem;
}
.info-txt-1 span {
  display: block;
}
.info-txt-1 span.info-t-name {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
}

.info-txt-2 {
  margin-bottom: 2.4rem;
}
.info-txt-2 a {
  font-size: 1.6rem;
  display: inline-block;
  color: #484848;
}
.info-txt-2 span {
  display: inline-block;
  text-decoration: underline;
}
.info-txt-2 span::after {
  content: "";
  background: url(../images/arrow-top-right.svg) no-repeat;
  background-size: cover;
  background-position: center;
  width: 2rem;
  height: 2rem;
  display: inline-block;
  position: relative;
  top: 0.4rem;
  left: 0.6rem;
  transition: all 0.2s ease-in;
}
@media (min-width: 960px) {
  .info-txt-2 span:hover::after {
    top: 0rem;
    transition: all 0.2s ease-in;
  }
}

.info-txt-3 {
  margin-bottom: 2.4rem;
}

.info-sns-wrap {
  margin-top: 5rem;
}
@media (min-width: 960px) {
  .info-sns-wrap {
    width: 45%;
    margin-top: 0;
  }
}

.info-sns-link {
  display: block;
  padding: 2.4rem 0;
  border-bottom: solid 1px #ededed;
  position: relative;
  color: #484848;
}
.info-sns-link:first-child {
  border-top: solid 1px #ededed;
}
@media (min-width: 960px) {
  .info-sns-link:first-child {
    border-top: none;
    margin-bottom: 2.4rem;
  }
}
.info-sns-link::after {
  content: "";
  display: inline-block;
  background: url(../images/arrow-top-right.svg) no-repeat;
  background-position: center;
  background-size: cover;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  transition: all 0.2s ease-in;
}
.info-sns-link span {
  line-height: 0;
  display: inline-block;
  margin-left: 3.8rem;
}
@media (min-width: 960px) {
  .info-sns-link:hover::after {
    top: 40%;
    transition: all 0.2s ease-in;
  }
}

.i-sns-l-insta::before {
  content: "";
  display: inline-block;
  background: url(../images/instagram.svg) no-repeat;
  background-position: center;
  background-size: cover;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}

.i-sns-l-line::before {
  content: "";
  display: inline-block;
  background: url(../images/line.svg) no-repeat;
  background-position: center;
  background-size: cover;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}

.info-dt-flex {
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 960px) {
  .info-dt-flex {
    display: flex;
    justify-content: space-around;
    padding: 0 6rem;
  }
}

@media (min-width: 960px) {
  .info-txt-wrap {
    width: 45%;
  }
}

.group-area {
  padding-top: 6.4rem;
  padding-bottom: 5.4rem;
  background: #fcfcfc;
  border-top: solid 1px #ededed;
}

@media (min-width: 960px) {
  .group-wrap {
    display: flex;
    justify-content: space-around;
    padding: 0 6rem;
  }
}

.g-i-img-wrap {
  position: relative;
  margin-top: 4.8rem;
}

@media (min-width: 960px) {
  .group-item {
    width: 45%;
  }
}
.group-item:first-child {
  margin-bottom: 4rem;
}

.g-i-img-fit {
  position: relative;
  width: auto;
  aspect-ratio: 5/2.325;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
}
.g-i-img-fit img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.g-link-btn {
  position: absolute;
  bottom: -2.4rem;
  right: 2rem;
}
.g-link-btn a {
  position: relative;
  top: 0;
  left: 0;
  transition: all 0.2s ease-in;
}
@media (min-width: 960px) {
  .g-link-btn a:hover {
    opacity: 1;
    top: -0.6rem;
    transition: all 0.2s ease-in;
  }
}

.g-l-btn-home {
  display: inline-block;
  width: 4.8rem;
  height: 4.8rem;
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 50%;
  margin-right: 1.4rem;
}
.g-l-btn-home span {
  display: block;
  position: relative;
}
.g-l-btn-home span::before {
  content: "";
  display: inline-block;
  background: url(../images/home.svg) no-repeat;
  background-position: center;
  background-size: cover;
  width: 1.8rem;
  height: 2rem;
  position: relative;
  top: 1.4rem;
  left: 1.5rem;
}

.g-l-btn-insta {
  display: inline-block;
  width: 4.8rem;
  height: 4.8rem;
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 50%;
}
.g-l-btn-insta span {
  display: block;
  position: relative;
}
.g-l-btn-insta span::before {
  content: "";
  display: inline-block;
  background: url(../images/instagram.svg) no-repeat;
  background-position: center;
  background-size: cover;
  width: 2rem;
  height: 2rem;
  position: relative;
  top: 1.5rem;
  left: 1.5rem;
}

.g-i-txt-wrap {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
}

.g-i-txt-name {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.g-i-txt-type {
  color: #7b7b7b;
  margin-bottom: 1rem;
}

.footer-bar {
  background: #fff;
  height: 7.8rem;
  text-align: center;
}

.footer-bar-copy {
  display: inline-block;
  font-size: 1rem;
  margin: 2.7rem 0;
}

.wedding-hero-wrap {
  width: 100%;
  aspect-ratio: 4/4.5;
  background-image: url(../images/wedding-hero.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 960px) {
  .wedding-hero-wrap {
    aspect-ratio: 2/1;
  }
}
.wedding-hero-wrap .container {
  position: relative;
  height: 100%;
}

.wedding-par-hero-wrap {
  width: 100%;
  aspect-ratio: 4/4.5;
  background-image: url(../images/wparty-hero.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 960px) {
  .wedding-par-hero-wrap {
    aspect-ratio: 2/1;
  }
}
.wedding-par-hero-wrap .container {
  position: relative;
  height: 100%;
}

.page-ttl-wrap {
  position: absolute;
  bottom: 5rem;
  right: 0;
}
@media (min-width: 960px) {
  .page-ttl-wrap {
    left: 0;
    right: inherit;
  }
}

.page-h1-ttl {
  text-align: right;
  margin: 0;
  padding: 0;
}
.page-h1-ttl img {
  height: 10rem;
  width: auto;
  -webkit-user-drag: none;
}
@media (min-width: 960px) {
  .page-h1-ttl {
    text-align: left;
  }
  .page-h1-ttl img {
    height: 14rem;
  }
}

.page-h1-sub {
  text-align: right;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.17rem;
}
@media (min-width: 960px) {
  .page-h1-sub {
    text-align: left;
  }
}

.page-sec-lead {
  padding-top: 9.2rem;
}
@media (min-width: 960px) {
  .page-sec-lead {
    padding-top: 15rem;
  }
}

.min-container {
  width: 79.5%;
  margin: 0 auto;
}

p.wed-lead {
  line-height: 2.8;
  letter-spacing: 0.15rem;
  text-align: left;
}
p.wed-lead span {
  display: inline-block;
}
@media (min-width: 960px) {
  p.wed-lead {
    text-align: center;
  }
  p.wed-lead span {
    margin-right: 0.4rem;
  }
}

.page-sec-wparty {
  padding-top: 9.2rem;
}

.wparty-menu-wrap {
  margin-top: 4.2rem;
}
@media (min-width: 960px) {
  .wparty-menu-wrap {
    margin-top: 7.6rem;
  }
}

.common-slider-inner {
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 45/34;
}
@media (min-width: 960px) {
  .common-slider-inner {
    aspect-ratio: 2/1;
  }
}

.wparty-slider-item {
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  aspect-ratio: 45/34;
}
@media (min-width: 960px) {
  .wparty-slider-item {
    aspect-ratio: 2/1.2;
  }
}
.wparty-slider-item img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wparty-s-i-1 img {
  height: 100%;
}
@media (min-width: 960px) {
  .wparty-s-i-1 img {
    height: auto;
    width: 100%;
  }
}

.wparty-s-i-2 img {
  height: 100%;
}
@media (min-width: 960px) {
  .wparty-s-i-2 img {
    height: auto;
    width: 100%;
  }
}

.wparty-s-i-3 img {
  height: 100%;
}
@media (min-width: 960px) {
  .wparty-s-i-3 img {
    height: auto;
    width: 100%;
  }
}

.page-sec-wphoto {
  padding-top: 7rem;
}

.wphoto-img-wrap {
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  aspect-ratio: 85/53;
  margin-top: 7.6rem;
}
.wphoto-img-wrap img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.menu-h3-ttl {
  margin-top: 5.4rem;
  margin-bottom: 0;
  font-size: 2.8rem;
  letter-spacing: 0.34rem;
  font-family: "Marcellus", serif;
  font-weight: 400;
  background: rgb(152, 163, 170);
  background: linear-gradient(45deg, rgb(152, 163, 170) 0%, rgb(185, 207, 209) 15%, rgb(168, 151, 140) 29%, rgb(168, 150, 139) 42%, rgb(203, 174, 146) 50%, rgb(184, 182, 172) 62%, rgb(118, 118, 118) 81%, rgb(224, 189, 150) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menu-ttl-sub {
  display: inline-block;
  line-height: 2.8;
}

p.wedding-menu-txt {
  margin-top: 5.4rem;
  font-size: 1.2rem;
  line-height: 2.5;
}
p.wedding-menu-txt span {
  display: inline-block;
}
@media (min-width: 960px) {
  p.wedding-menu-txt {
    line-height: 2.8;
    font-size: 1.4rem;
  }
  p.wedding-menu-txt span {
    margin-right: 0.4rem;
  }
}

.menu-detail-ttl {
  font-family: "Poppins", "メイリオ", Meiryo, sans-serif;
  font-size: 1.2rem;
  color: #afafaf;
  margin-left: 1rem;
  margin-top: 6.2rem;
  margin-bottom: 2.4rem;
  position: relative;
}
.menu-detail-ttl::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  background-color: #afafaf;
  border-radius: 0.4rem;
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translateY(-50%);
}

.menu-detail-box {
  position: relative;
  background-color: #fff;
  border: solid 1px #eaeaea;
  padding: 3.4rem 6.6% 0;
  margin-bottom: 6rem;
}
@media (min-width: 960px) {
  .menu-detail-box {
    padding: 5.8rem 6.6% 0;
  }
}

.menu-d-h4-ttl {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.168rem;
  margin-bottom: 2rem;
}
.menu-d-h4-ttl span.menu-d-h4-num {
  display: inline-block;
  margin-right: 3.4rem;
}

.menu-d-item {
  margin: 0 auto 3.4rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px dotted #b3b3b3;
}
.menu-d-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (min-width: 960px) {
  .menu-d-item:last-child {
    margin-bottom: 6rem;
  }
}
.menu-d-item p {
  font-size: 1.2rem;
  line-height: 2.6;
  margin: 0;
}

.menu-d-hosoku {
  margin-top: 4rem;
  letter-spacing: 0.12rem;
  line-height: 2.3;
}
.menu-d-hosoku span {
  font-size: 1.2rem;
  display: block;
  text-align: justify;
}

.menu-d-slider {
  margin-bottom: 6rem;
}

.wsphoto-slider-item {
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  aspect-ratio: 45/34;
}
@media (min-width: 960px) {
  .wsphoto-slider-item {
    aspect-ratio: 2/1.2;
  }
}
.wsphoto-slider-item img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wsphoto-s-i-1 img {
  height: 100%;
}
@media (min-width: 960px) {
  .wsphoto-s-i-1 img {
    height: auto;
    width: 100%;
  }
}

.wsphoto-s-i-2 img {
  height: 100%;
}
@media (min-width: 960px) {
  .wsphoto-s-i-2 img {
    height: auto;
    width: 100%;
  }
}

.wsphoto-s-i-3 img {
  height: 100%;
}
@media (min-width: 960px) {
  .wsphoto-s-i-3 img {
    height: auto;
    width: 100%;
  }
}

.wsphoto-s-i-4 img {
  height: 100%;
}

h4.menu-d-h4-ttl-l {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.192rem;
  margin-bottom: 0.4rem;
}

.menu-d-h4-sub {
  font-size: 1rem;
  margin-bottom: 1.8rem;
}

.menu-d-price {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.192rem;
  margin-bottom: 3.4rem;
}

ul.menu-d-explan-l {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 3.4rem;
  padding-inline-start: 1rem;
}
@media (min-width: 960px) {
  ul.menu-d-explan-l {
    margin-bottom: 6rem;
  }
}
ul.menu-d-explan-l li {
  font-size: 1.4rem;
  line-height: 2;
}
ul.menu-d-explan-l li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #484848;
  display: inline-block;
  position: relative;
  top: -0.3rem;
  left: -1rem;
}

ul.menu-d-explan-s {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 3.4rem;
  padding-inline-start: 1rem;
}
@media (min-width: 960px) {
  ul.menu-d-explan-s {
    margin-bottom: 6rem;
  }
}
ul.menu-d-explan-s li {
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 0.5rem;
}
ul.menu-d-explan-s li::before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #484848;
  display: inline-block;
  position: relative;
  top: -0.3rem;
  left: -1rem;
}

.wlphoto-slider-item {
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  aspect-ratio: 45/34;
}
@media (min-width: 960px) {
  .wlphoto-slider-item {
    aspect-ratio: 2/1.2;
  }
}
.wlphoto-slider-item img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wlphoto-s-i-1 img {
  height: 100%;
}
@media (min-width: 960px) {
  .wlphoto-s-i-1 img {
    height: auto;
    width: 100%;
  }
}

.wlphoto-s-i-2 img {
  height: 100%;
}
@media (min-width: 960px) {
  .wlphoto-s-i-2 img {
    height: auto;
    width: 100%;
  }
}

.wlphoto-s-i-3 img {
  height: 100%;
}
@media (min-width: 960px) {
  .wlphoto-s-i-3 img {
    height: auto;
    width: 100%;
  }
}

.wlphoto-s-i-4 img {
  height: 100%;
}
@media (min-width: 960px) {
  .wlphoto-s-i-4 img {
    height: auto;
    width: 100%;
  }
}

.wlphoto-s-i-5 img {
  height: 100%;
}
@media (min-width: 960px) {
  .wlphoto-s-i-5 img {
    height: auto;
    width: 100%;
  }
}

.another-menu {
  margin-top: 7.4rem;
  margin-bottom: 7.4rem;
}
@media (min-width: 960px) {
  .another-menu {
    margin-top: 15rem;
    margin-bottom: 15rem;
  }
}

.another-menu-wrap-a {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.another-menu-wrap-a::before {
  content: "";
  background-image: url(../images/thumb-anniversary.jpg);
  background-repeat: no-repeat;
  background-position: 0 -4rem;
  background-size: cover;
  filter: contrast(85%);
  width: 100%;
  padding-top: 36.6666%;
  display: inline-block;
  transition: all 0.2s ease-in;
}
@media (min-width: 960px) {
  .another-menu-wrap-a::before {
    padding-top: 30.5666%;
    background-position: 0 center;
  }
}
@media (min-width: 960px) {
  .another-menu-wrap-a:hover::before {
    transform: scale(1.05);
    transition: all 0.2s ease-in;
  }
}

.an-m-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.an-m-ttl {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 0.26rem;
}
@media (min-width: 960px) {
  .an-m-ttl {
    font-size: 3.4rem;
  }
}

.an-m-sub {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.13rem;
}
@media (min-width: 960px) {
  .an-m-sub {
    font-size: 1.3rem;
    margin-top: 0.8rem;
  }
}

.anni-hero-wrap {
  width: 100%;
  aspect-ratio: 4/4.5;
  background-image: url(../images/thumb-anniversary.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 960px) {
  .anni-hero-wrap {
    aspect-ratio: 2/1;
  }
}
.anni-hero-wrap .container {
  position: relative;
  height: 100%;
}

.page-sec-anni {
  padding-top: 9rem;
}

.anni-menu-wrap {
  margin-top: 4.4rem;
}

.anni-slider-item {
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  aspect-ratio: 45/34;
}
@media (min-width: 960px) {
  .anni-slider-item {
    aspect-ratio: 2/1.2;
  }
}
.anni-slider-item img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.anni-s-i-1 img {
  height: 100%;
}
@media (min-width: 960px) {
  .anni-s-i-1 img {
    height: auto;
    width: 100%;
  }
}

.anni-s-i-2 img {
  height: 100%;
}
@media (min-width: 960px) {
  .anni-s-i-2 img {
    height: auto;
    width: 100%;
  }
}

.anni-s-i-3 img {
  height: 100%;
}
@media (min-width: 960px) {
  .anni-s-i-3 img {
    height: auto;
    width: 100%;
  }
}

.anni-s-i-4 img {
  height: 100%;
}
@media (min-width: 960px) {
  .anni-s-i-4 img {
    height: auto;
    width: 100%;
  }
}

.anni-s-i-5 img {
  height: 100%;
}
@media (min-width: 960px) {
  .anni-s-i-5 img {
    height: auto;
    width: 100%;
  }
}

.menu-explan-option {
  background: #f8f8f8;
  padding: 1.6rem;
  margin-bottom: 3.4rem;
}
.menu-explan-option p {
  text-align: left;
  font-size: 1.2rem;
  line-height: 2;
  margin: 0;
}
.menu-explan-option p span {
  display: inline-block;
  margin-bottom: 1rem;
}
@media (min-width: 960px) {
  .menu-explan-option p {
    line-height: 2.5;
  }
  .menu-explan-option p span {
    margin-bottom: 0;
  }
}

.m-e-option-h {
  font-family: "Poppins", "メイリオ", Meiryo, sans-serif;
  color: #afafaf;
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
}
.m-e-option-h span {
  display: inline-block;
  margin-right: 0.5rem;
}

p.anni-menu-txt {
  margin-top: 2.4rem;
  font-size: 1.2rem;
}
@media (min-width: 960px) {
  p.anni-menu-txt {
    font-size: 1.4rem;
  }
}

.page-sec-others {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.others-slider-item {
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  aspect-ratio: 45/34;
}
@media (min-width: 960px) {
  .others-slider-item {
    aspect-ratio: 2/1.2;
  }
}
.others-slider-item img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.others-s-i-1 img {
  height: 100%;
}
@media (min-width: 960px) {
  .others-s-i-1 img {
    height: auto;
    width: 100%;
  }
}

.others-s-i-2 img {
  height: 100%;
}
@media (min-width: 960px) {
  .others-s-i-2 img {
    height: auto;
    width: 100%;
  }
}

.others-s-i-3 img {
  height: 100%;
}
@media (min-width: 960px) {
  .others-s-i-3 img {
    height: auto;
    width: 100%;
  }
}

.others-s-i-4 img {
  height: 100%;
}
@media (min-width: 960px) {
  .others-s-i-4 img {
    height: auto;
    width: 100%;
  }
}

.others-s-i-5 img {
  height: 100%;
}
@media (min-width: 960px) {
  .others-s-i-5 img {
    height: auto;
    width: 100%;
  }
}

.another-menu-wrap-w {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.another-menu-wrap-w::before {
  content: "";
  background-image: url(../images/wedding-hero.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: contrast(85%);
  width: 100%;
  padding-top: 36.6666%;
  display: inline-block;
}
@media (min-width: 960px) {
  .another-menu-wrap-w::before {
    padding-top: 30.5666%;
    background-position: 0 center;
  }
}
@media (min-width: 960px) {
  .another-menu-wrap-w:hover::before {
    transform: scale(1.05);
    transition: all 0.2s ease-in;
    padding-top: 30.5666%;
  }
}

.contact-hero-wrap {
  width: 100%;
  aspect-ratio: 4/4.5;
  background-image: url(../images/cct-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 960px) {
  .contact-hero-wrap {
    aspect-ratio: 2/1;
  }
}
.contact-hero-wrap .container {
  position: relative;
  height: 100%;
}

.contatc-sec-tel {
  padding-top: 5.8rem;
}

.contact-tel-lead {
  text-align: center;
  line-height: 2.8;
  margin-bottom: 4.6rem;
}
.contact-tel-lead span {
  display: inline-block;
}

.contact-sec-form {
  padding-top: 6.4rem;
  padding-bottom: 5.4rem;
  background: #fcfcfc;
  border-top: solid 1px #ededed;
}
@media (min-width: 960px) {
  .contact-sec-form {
    padding-bottom: 12rem;
  }
}

.contact-form-lead {
  text-align: center;
  line-height: 2.8;
  margin-top: 4.8rem;
  margin-bottom: 4.6rem;
}
.contact-form-lead span {
  display: inline-block;
}

.form-item select {
  width: 100%;
  height: 4.5rem;
  border: solid 1px #ebebeb;
  padding-left: 1.4rem;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.form-item select::-ms-expand {
  display: none;
}
.form-item select option {
  padding: 0;
  min-height: auto;
}

.select-wrap {
  position: relative;
}
.select-wrap::before {
  content: "";
  background-image: url(../images/chevron-down.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0.8rem;
  top: 1rem;
  width: 3rem;
  height: 3rem;
  pointer-events: none;
  cursor: pointer;
}

.form-item input {
  width: 100%;
  height: 4.5rem;
  border: solid 1px #ebebeb;
  padding-left: 1.4rem;
  box-sizing: border-box;
}
.form-item input::-moz-placeholder {
  opacity: 0.5;
}
.form-item input::placeholder {
  opacity: 0.5;
  letter-spacing: 0.15rem;
}

.input-wrap {
  display: flex;
  justify-content: space-between;
}
.input-wrap input.form-input-column {
  width: 49%;
}

.form-item textarea {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  border: solid 1px #ebebeb;
  box-sizing: border-box;
}

.form-item {
  margin-bottom: 2.6rem;
}

.form-i-txt {
  margin-bottom: 1rem;
  line-height: 1;
}
.form-i-txt span {
  display: inline-block;
  margin-left: 0.6rem;
  font-size: 1.1rem;
  color: #ea7b7b;
}

.form-lead-require {
  margin: 2.4rem 0 2rem;
  padding: 0.8rem 0;
  font-size: 1.2rem;
  text-align: left;
  border-top: solid 1px #ebebeb;
  border-bottom: solid 1px #ebebeb;
}
.form-lead-require span {
  display: inline-block;
  margin-right: 1rem;
  color: #ea7b7b;
}

.form-accept {
  margin: 2.6rem 0;
}
.form-accept input {
  display: inline-block;
  margin-right: 0.8rem;
  vertical-align: middle;
}

.modalContents p {
  line-height: 2;
  font-size: 1.2rem;
}
.modalContents p:last-child {
  margin-top: 3rem;
}

h3.policy-h3-ttl {
  font-size: 1.3rem;
  letter-spacing: 0.144rem;
  font-weight: 500;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
h3.policy-h3-ttl span {
  display: inline-block;
  margin-right: 1rem;
}

.openModal {
  text-decoration: underline;
  cursor: pointer;
}

.modalArea {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.4);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 500px;
  padding: 30px 30px;
  background-color: #fff;
  height: 70vh;
  overflow: auto;
  border: solid 1px #ebebeb;
  border-radius: 0.4rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

.submit-wrap {
  position: relative;
}
.submit-wrap input {
  display: inline-block;
  width: 100%;
  height: 6.2rem;
  box-sizing: border-box;
  background: #fff;
  border: solid 1px #707070;
  letter-spacing: 0.16rem;
}
.submit-wrap::after {
  content: "";
  background-image: url(../images/chevron-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 3rem;
  height: 3rem;
  display: block;
  position: absolute;
  top: 50%;
  right: 1.4rem;
  transform: translateY(-50%);
}/*# sourceMappingURL=style.css.map */