@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

body {
  overflow-x: hidden;
  background: #FFFFFF;
  font-family: "Noto Serif JP", serif;
  color: #595757;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.06em;
}
body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #595757;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

img {
  max-width: 100%; /* 1 */
  height: auto; /* 1 */
  vertical-align: middle; /* 2 */
  font-style: italic; /* 3 */
  background-repeat: no-repeat; /* 4 */
  background-size: cover; /* 4 */
  shape-margin: 0.75rem; /* 5 */
}

::-webkit-input-placeholder {
  color: gray;
}

::-moz-placeholder {
  color: gray;
}

:-ms-input-placeholder {
  color: gray;
}

::-ms-input-placeholder {
  color: gray;
}

::placeholder {
  color: gray;
}

/*=========================================================================
# アニメーション
========================================================================= */
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*=========================================================================
# ヘッダー
========================================================================= */
.l-header {
  background: #F1F0EC;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.l-header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 120rem;
  height: inherit;
  padding: 0 3.75rem;
  margin: 0 auto;
  height: 5.5rem;
}
@media screen and (max-width: 1023px) {
  .l-header__wrapper {
    height: 3.75rem;
    width: 100%;
    padding: 0 1.5rem;
  }
}

.l-header__logo a img {
  width: 86px;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (max-width: 1023px) {
  .l-header__logo a img {
    width: 60px;
  }
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1023px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav li {
  text-align: center;
}
.l-header__nav a {
  color: #BAAD8D;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1599px) {
  .l-header__nav a {
    font-size: 16px;
  }
}

.l-main {
  margin-top: 5.5rem;
}
@media screen and (max-width: 1023px) {
  .l-main {
    margin-top: 3.75rem;
  }
}

/*=========================================================================
# 共通インナー
========================================================================= */
.l-inner {
  position: relative;
  width: 100%;
  max-width: 1480px;
  height: inherit;
  padding: 0 2.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    padding: 0 1.5rem;
  }
}

.l-footer {
  padding-top: 180px;
  padding-bottom: 230px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .l-footer {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

.l-footer__logo {
  display: inline-block;
}
@media screen and (max-width: 1023px) {
  .l-footer__logo {
    width: 120px;
  }
}

.l-footer__info {
  margin-top: 60px;
}
@media screen and (max-width: 1023px) {
  .l-footer__info {
    margin-top: 30px;
  }
}
.l-footer__info p {
  font-size: 18px;
  font-weight: 200;
}
@media screen and (max-width: 1023px) {
  .l-footer__info p {
    font-size: 13px;
  }
}
.l-footer__info p + p {
  margin-top: 20px;
}
@media screen and (max-width: 1023px) {
  .l-footer__info p + p {
    margin-top: 7px;
  }
}

.l-section {
  padding-top: 186px;
}
@media screen and (max-width: 1023px) {
  .l-section {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .l-section {
    padding-top: 32px;
  }
}

/*=========================================================================
# 問い合わせへのボタン
========================================================================= */
.l-fixedBtn {
  display: none;
  position: fixed;
  bottom: 5%;
  right: 0;
  z-index: 1;
}
.l-fixedBtn a {
  display: grid;
  place-items: center;
  text-align: center;
  color: #FFFFFF;
  font-size: 26px;
  letter-spacing: 0.24em;
  line-height: 1.6;
  background-color: #D2BFC5;
  width: 200px;
  height: 160px;
  border-radius: 8px 0 0 8px;
}
@media screen and (max-width: 1023px) {
  .l-fixedBtn a {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 12px;
    width: 42px;
    height: 150px;
  }
}

/*=========================================================================
# 共通パーツ
========================================================================= */
.c-heading h2 {
  color: #BAAD8D;
  font-size: 70px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .c-heading h2 {
    font-size: 24px;
  }
}

.c-cta {
  width: 940px;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

.c-cta__head {
  font-size: 25px;
  letter-spacing: 0.1em;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
  border-bottom: 1px solid;
  padding-bottom: 12px;
}
@media screen and (max-width: 1023px) {
  .c-cta__head {
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
  }
}

.c-cta__text {
  margin-top: 20px;
  text-align: center;
  font-size: 34px;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .c-cta__text {
    margin-top: 15px;
    font-size: 16px;
  }
}
.c-cta__text span {
  color: #BAAD8D;
  font-size: 46px;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .c-cta__text span {
    font-size: 22px;
  }
}

.c-cta__link {
  display: inline-block;
  width: 100%;
  margin-top: 20px;
  background-color: #BAAD8D;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 34px;
  color: #FFFFFF;
  font-size: 20px;
  letter-spacing: 0.12em;
  line-height: 2;
}
@media screen and (max-width: 1023px) {
  .c-cta__link {
    max-width: 500px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    margin-top: 15px;
    font-size: 13px;
    text-align: center;
  }
}
.c-cta__link span {
  margin-left: 30px;
  padding-right: 36px;
  font-size: 30px;
  letter-spacing: 0.14em;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .c-cta__link span {
    padding-right: 18px;
    font-size: 19px;
  }
}
.c-cta__link span::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 25px;
  height: auto;
  aspect-ratio: 50/42;
  background: url(../img/arrow.png) no-repeat center center/cover;
}
@media screen and (max-width: 1023px) {
  .c-cta__link span::after {
    width: 12px;
  }
}

.p-header__wrapper {
  width: 100%;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.25rem;
     -moz-column-gap: 2.25rem;
          column-gap: 2.25rem;
}
@media screen and (max-width: 519px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__item a {
  padding: 0.125rem;
}

.p-drawer__icon {
  display: none;
  width: 47px;
  height: 47px;
  position: relative;
}
.p-drawer__icon--wrap {
  position: fixed;
  top: 5px;
  right: 20px;
  z-index: 999;
}
.p-drawer__icon .bar {
  width: 31px;
  height: 1px;
  background: #231815;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  left: 14px;
}
.p-drawer__icon .bar1 {
  top: 10px;
}
.p-drawer__icon .bar2 {
  top: 22px;
}
.p-drawer__icon .bar3 {
  top: 34px;
}
.p-drawer__icon.js-open .bar {
  left: 12px;
  width: 25px;
  top: 22px;
}
.p-drawer__icon.js-open .bar1 {
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}
.p-drawer__icon.js-open .bar3 {
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}
.p-drawer__icon.js-open .bar2 {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-drawer__icon {
    display: block;
  }
}

.p-drawer__menu {
  position: fixed;
  top: 0;
  right: -120%;
  width: 300px;
  height: 100svh;
  z-index: 102;
  background: #FFE6E6;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.p-drawer__menu.js-open {
  right: 0;
}

.p-drawer__container {
  height: 100%;
  padding-top: 64px;
  padding-left: 38px;
  padding-right: 37px;
  position: relative;
}

.p-drawer__nav li {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .p-drawer__nav li:hover {
    opacity: 0.5;
  }
}
.p-drawer__nav li + li {
  margin-top: 20px;
}

.p-drawer__bg {
  display: none;
  width: 100%;
  height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(62, 58, 57, 0.4);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 101;
}
.p-drawer__bg.js-open {
  display: block;
}

.p-fv {
  width: 100%;
  height: auto;
  aspect-ratio: 1600/982;
  background: url(../img/img_fv_pc.webp) no-repeat center center/cover;
}
@media screen and (max-width: 1023px) {
  .p-fv {
    aspect-ratio: 375/173;
  }
}

.p-cta {
  padding-top: 80px;
}
@media screen and (max-width: 1023px) {
  .p-cta {
    padding-top: 30px;
  }
}

.p-cta__text01 {
  font-size: 53px;
  line-height: 1.7;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .p-cta__text01 {
    font-size: 23px;
  }
}
.p-cta__text01::after {
  content: "";
  position: absolute;
  top: -85px;
  left: -140px;
  width: 477px;
  height: auto;
  aspect-ratio: 477/180;
  background: url(../img/item_wedding.svg) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 1800px) {
  .p-cta__text01::after {
    top: -130px;
    left: 0;
  }
}
@media screen and (max-width: 1023px) {
  .p-cta__text01::after {
    width: 200px;
    top: -46px;
    left: 10px;
  }
}

.p-cta__text02 {
  margin-top: 60px;
  color: #BAAD8D;
  font-size: 36px;
  letter-spacing: 0.06em;
  line-height: 1.7;
  font-weight: 300;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-cta__text02 {
    margin-top: 20px;
    font-size: 16px;
  }
}

.p-cta__body {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1023px) {
  .p-cta__body {
    display: block;
    margin-top: 30px;
  }
}

.p-cta__thumb {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .p-cta__thumb {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.p-cta__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-cta__content {
  width: 700px;
  padding: 40px;
  background-color: #F1F0EC;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-cta__content {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 24px;
  }
}

.p-cta__text04 {
  margin-top: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .p-cta__text04 {
    margin-top: 0;
    font-size: 16px;
    letter-spacing: 0;
  }
}

.p-cta__text05 {
  margin-top: 30px;
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .p-cta__text05 {
    margin-top: 12px;
    font-size: 16px;
  }
}
.p-cta__text05 span {
  color: #BAAD8D;
  font-size: 50px;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .p-cta__text05 span {
    font-size: 22px;
  }
}

.p-cta__link {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background-color: #BAAD8D;
  color: #FFFFFF;
  margin-top: 50px;
}
@media screen and (max-width: 1023px) {
  .p-cta__link {
    max-width: 335px;
    margin-top: 12px;
    padding: 8px;
  }
}
.p-cta__link span {
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 1023px) {
  .p-cta__link span {
    font-size: 12px;
  }
}
.p-cta__link p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 36px;
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.14em;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-cta__link p {
    font-size: 19px;
  }
}
.p-cta__link p::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 25px;
  height: auto;
  aspect-ratio: 50/42;
  background: url(../img/arrow.png) no-repeat center center/cover;
}

.p-concept__message {
  margin-top: 80px;
  background: url(../img/bg_concept_pc.webp) no-repeat center center/cover;
  padding-top: 80px;
  padding-bottom: 130px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-concept__message {
    margin-top: 50px;
    background-position: center left;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.p-concept__message p {
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 2.3;
}
@media screen and (max-width: 1023px) {
  .p-concept__message p {
    font-size: 12px;
    margin-top: -58px;
  }
}
.p-concept__message p + p {
  margin-top: 80px;
}
@media screen and (max-width: 1023px) {
  .p-concept__message p + p {
    margin-top: 30px;
  }
}

.p-concept__items {
  margin-top: 100px;
}
@media screen and (max-width: 1023px) {
  .p-concept__items {
    margin-top: 40px;
  }
}
.p-concept__items > p {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-concept__items > p {
    font-size: 16px;
  }
}
.p-concept__items ul {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1023px) {
  .p-concept__items ul {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.p-concept__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc((100% - 80px) / 3);
  border-radius: 4px;
}
@media screen and (max-width: 1023px) {
  .p-concept__card {
    width: 100%;
  }
}

.p-cocept__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-concept__cardText {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-color: #F1F0EC;
  padding: 20px;
  color: #BAAD8D;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0.1em;
  font-weight: 300;
}
@media screen and (max-width: 1023px) {
  .p-concept__cardText {
    padding: 10px;
    font-size: 14px;
  }
}

.p-concept__movie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  margin-top: 110px;
}
@media screen and (max-width: 1023px) {
  .p-concept__movie {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    margin-top: 70px;
  }
}

.p-concept__movieContent p {
  font-size: 40px;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  padding-right: 60px;
  padding-left: 25px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .p-concept__movieContent p {
    font-size: 16px;
    padding-right: 0;
    padding-left: 0;
  }
}
.p-concept__movieContent p::after {
  content: "";
  position: absolute;
  top: -64px;
  left: -30px;
  width: 215px;
  height: auto;
  aspect-ratio: 215/106;
  background: url(../img/item_movie.svg) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .p-concept__movieContent p::after {
    width: 136px;
    top: -45px;
    left: -15px;
  }
}

.p-concept__movieThumb {
  width: 49.2857142857%;
  height: auto;
  aspect-ratio: 690/370;
  margin-right: 60px;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .p-concept__movieThumb {
    width: 100%;
    margin-right: 0;
  }
}
.p-concept__movieThumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-concept__cta {
  margin-top: 100px;
}
@media screen and (max-width: 1023px) {
  .p-concept__cta {
    margin-top: 40px;
  }
}

.p-stage {
  overflow: hidden;
}

.p-stage__wrap {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 115px;
}
@media screen and (max-width: 1023px) {
  .p-stage__wrap {
    margin-top: 25px;
    gap: 40px;
  }
}

.p-stage__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-stage__item {
    display: block;
  }
}
.p-stage__item--even {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-stage__thumb {
  height: auto;
}
.p-stage__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-stage__thumb--odd {
  width: 63.9285714286%;
  aspect-ratio: 895/471;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-stage__thumb--odd {
    width: 100%;
  }
}
.p-stage__thumb--odd::before {
  content: "";
  position: absolute;
  top: -82px;
  left: -254px;
  width: 326px;
  height: auto;
  aspect-ratio: 1;
  z-index: -1;
  background-color: #FFE6E6;
}
@media screen and (max-width: 1023px) {
  .p-stage__thumb--odd::before {
    width: 45px;
    left: -23px;
    top: -15px;
  }
}
.p-stage__thumb--even {
  width: 53.0714285714%;
  aspect-ratio: 743/471;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-stage__thumb--even {
    width: 100%;
  }
}
.p-stage__thumb--even::before {
  content: "";
  position: absolute;
  top: -82px;
  right: -254px;
  width: 326px;
  height: auto;
  aspect-ratio: 1;
  z-index: -1;
  background-color: #F1F0EC;
}
@media screen and (max-width: 1023px) {
  .p-stage__thumb--even::before {
    width: 45px;
    right: -23px;
    top: -15px;
  }
}

.p-stage__text {
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.01em;
  line-height: 2.4;
}
@media screen and (max-width: 1023px) {
  .p-stage__text {
    font-size: 14px;
    margin-top: 10px;
  }
}
.p-food {
  overflow: hidden;
}

.p-food__wrap {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 115px;
}
@media screen and (max-width: 1023px) {
  .p-food__wrap {
    margin-top: 25px;
    gap: 40px;
  }
}

.p-food__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-food__item {
    display: block;
  }
}
.p-food__item--odd {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-food__item--even {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 50px;
}

.p-food__thumb {
  height: auto;
}
.p-food__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-food__thumb--odd {
  width: 63.9285714286%;
  aspect-ratio: 895/471;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-food__thumb--odd {
    width: 100%;
  }
}
.p-food__thumb--odd::before {
  content: "";
  position: absolute;
  top: -82px;
  left: -254px;
  width: 326px;
  height: auto;
  aspect-ratio: 1;
  z-index: -1;
  background-color: #FFE6E6;
}
@media screen and (max-width: 1023px) {
  .p-food__thumb--odd::before {
    width: 45px;
    left: -23px;
    top: -15px;
  }
}
.p-food__thumb--even {
  width: 53.0714285714%;
  aspect-ratio: 743/471;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-food__thumb--even {
    width: 100%;
  }
}
.p-food__thumb--even::before {
  content: "";
  position: absolute;
  top: -82px;
  right: -254px;
  width: 326px;
  height: auto;
  aspect-ratio: 1;
  z-index: -1;
  background-color: #F1F0EC;
}
@media screen and (max-width: 1023px) {
  .p-food__thumb--even::before {
    width: 45px;
    right: -23px;
    top: -15px;
  }
}

.p-food__text {
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.01em;
  line-height: 2.4;
}
@media screen and (max-width: 1023px) {
  .p-food__text {
    font-size: 14px;
    margin-top: 10px;
  }
}
.p-food__cta {
  margin-top: 130px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-food__cta {
    margin-top: 40px;
  }
}
.p-food__cta p {
  font-size: 25px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 300;
}
@media screen and (max-width: 1023px) {
  .p-food__cta p {
    font-size: 14px;
  }
}
.p-food__cta a {
  display: inline-block;
  margin-top: 20px;
  width: 100%;
  max-width: 940px;
  background-color: #BAAD8D;
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 30px;
  letter-spacing: 0.14em;
  line-height: 1.3;
  color: #FFFFFF;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-food__cta a {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 19px;
  }
}
.p-food__cta a::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  height: auto;
  aspect-ratio: 50/42;
  background: url(../img/arrow.png) no-repeat center center/cover;
}
@media screen and (max-width: 1023px) {
  .p-food__cta a::after {
    width: 12px;
  }
}

.p-schedule__message {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-schedule__message {
    margin-top: 20px;
  }
}
.p-schedule__message p {
  font-size: 38px;
  letter-spacing: 0.06em;
  font-weight: 300;
  line-height: 2.3;
}
@media screen and (max-width: 1023px) {
  .p-schedule__message p {
    font-size: 15px;
  }
}

.p-schedule__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
  margin-top: 90px;
}
@media screen and (max-width: 1023px) {
  .p-schedule__items {
    gap: 30px;
  }
}

.p-schedule__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-schedule__card:nth-of-type(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 1023px) {
  .p-schedule__card:nth-of-type(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 10px;
  }
}
.p-schedule__card:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1023px) {
  .p-schedule__card:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 10px;
  }
}
.p-schedule__card:nth-of-type(even) .p-schedule__content {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-schedule__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid;
}
@media screen and (max-width: 1023px) {
  .p-schedule__content {
    border: none;
    padding-bottom: 0;
  }
}

.p-schedule__time {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 224px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #F1F0EC;
  outline: 1px solid #FFFFFF;
  outline-offset: -10px;
  color: #BAAD8D;
  font-weight: 300;
  font-size: 49px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-schedule__time {
    text-align: center;
    line-height: 210px;
  }
}
@media screen and (max-width: 767px) {
  .p-schedule__time {
    width: 100px;
    height: 100px;
    font-size: 21px;
    line-height: 100px;
    outline-offset: -5px;
  }
}
.p-schedule__time:has(span) {
  position: relative;
}
.p-schedule__time:has(span)::after {
  content: "";
  position: absolute;
  top: 53%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 21px;
  height: auto;
  aspect-ratio: 21/10;
  background: url(../img/arrow_time.svg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-schedule__time:has(span)::after {
    width: 10px;
  }
}
@media screen and (max-width: 1023px) {
  .p-schedule__time span {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p-schedule__time span:first-child {
    top: -15%;
  }
  .p-schedule__time span:last-child {
    top: 20%;
  }
}
@media screen and (max-width: 767px) {
  .p-schedule__time span:first-child {
    top: -13%;
  }
  .p-schedule__time span:last-child {
    top: 16%;
  }
}

.p-schedule__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 2.4;
}
@media screen and (max-width: 1023px) {
  .p-schedule__text {
    font-size: 14px;
    line-height: 1.6;
  }
}

.p-schedule__thumb {
  width: 39.1428571429%;
  height: auto;
  aspect-ratio: 548/422;
}
@media screen and (max-width: 1023px) {
  .p-schedule__thumb {
    width: calc(100% - 224px);
  }
}
@media screen and (max-width: 767px) {
  .p-schedule__thumb {
    width: calc(100% - 100px);
  }
}
.p-schedule__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-schedule__thumb--wrap {
  display: contents;
}
@media screen and (max-width: 1023px) {
  .p-schedule__thumb--wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-schedule__banner {
  width: 100vw;
  height: auto;
  aspect-ratio: 1920/794;
  background: url(../img/bg_happiness_pc.webp) no-repeat center center/cover;
  margin-top: 190px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-schedule__banner {
    margin-top: 50px;
    aspect-ratio: 375/234;
    background: url(../img/bg_happiness_sp.webp) no-repeat center center/cover;
  }
}

.p-schedule__cta {
  margin-top: 120px;
}
@media screen and (max-width: 1023px) {
  .p-schedule__cta {
    margin-top: 30px;
  }
}

.p-schedule__ctaHead {
  text-align: center;
  color: #BAAD8D;
  font-size: 36px;
  letter-spacing: 0.06em;
  line-height: 1.7;
}
@media screen and (max-width: 1023px) {
  .p-schedule__ctaHead {
    font-size: 14px;
  }
}

.p-schedule__ctaBody {
  margin-top: 120px;
}
@media screen and (max-width: 1023px) {
  .p-schedule__ctaBody {
    margin-top: 40px;
  }
}

.p-gallery {
  text-align: center;
}

.p-gallery__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 40px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-gallery__items {
    gap: 10px;
    margin-top: 20px;
  }
}

.p-gallery__card {
  width: calc((100% - 80px) / 3);
  height: auto;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-gallery__card {
    width: calc((100% - 10px) / 2);
  }
}
.p-gallery__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-gallery__btn {
  display: inline-block;
  margin-top: 60px;
  text-align: center;
  cursor: pointer;
  min-width: 250px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border: 1px solid #BAAD8D;
  font-size: 30px;
  letter-spacing: 0.16em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-gallery__btn {
    min-width: 110px;
    margin-top: 18px;
    font-size: 13px;
    height: 26px;
    line-height: 26px;
  }
}

.nonePc {
  display: none;
}
@media screen and (max-width: 767px) {
  .nonePc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .noneSp {
    display: none;
  }
}

.p-flow__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  margin-top: 80px;
}
@media screen and (max-width: 1023px) {
  .p-flow__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 15px;
    gap: 15px;
  }
}
.p-flow__wrap li {
  display: grid;
  place-items: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #BAAD8D;
  font-size: 31px;
  font-weight: 300;
  letter-spacing: 0.16em;
  width: 120px;
  height: 432px;
  border: 1px solid;
}
@media screen and (max-width: 1023px) {
  .p-flow__wrap li {
    -webkit-writing-mode: lr;
        -ms-writing-mode: lr;
            writing-mode: lr;
    height: 60px;
    font-size: 17px;
    width: 100%;
    max-width: 500px;
  }
}
.p-flow__wrap li + li {
  position: relative;
}
.p-flow__wrap li + li::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -63px;
  width: 76px;
  height: auto;
  aspect-ratio: 1;
  background: url(../img/arrow_flow.png) no-repeat center center/cover;
}
@media screen and (max-width: 1023px) {
  .p-flow__wrap li + li::after {
    width: 34px;
    top: -42px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.p-contact__message {
  margin-top: 60px;
  text-align: center;
  font-size: 38px;
  font-weight: 300;
  line-height: 2.3;
}
@media screen and (max-width: 1023px) {
  .p-contact__message {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.8;
  }
}

form {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  form {
    margin-top: 30px;
  }
}

.p-contact__formTitle {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 26px;
  font-weight: 300;
  border-bottom: 1px solid;
}
@media screen and (max-width: 1023px) {
  .p-contact__formTitle {
    font-size: 12px;
  }
}

.p-contact__items {
  margin-top: 60px;
  width: 100%;
  max-width: 810px;
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .p-contact__items {
    margin-top: 20px;
    max-width: 500px;
  }
}

.p-contact__item + .p-contact__item {
  margin-top: 40px;
}
@media screen and (max-width: 1023px) {
  .p-contact__item + .p-contact__item {
    margin-top: 20px;
  }
}
.p-contact__item dt {
  font-size: 26px;
}
@media screen and (max-width: 1023px) {
  .p-contact__item dt {
    font-size: 11px;
  }
}
.p-contact__item dd {
  margin-top: 10px;
}
@media screen and (max-width: 1023px) {
  .p-contact__item dd {
    margin-top: 0;
  }
}
.p-contact__item dd p {
  margin-top: 8px;
  font-size: 20px;
  text-align: left;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-contact__item dd p {
    font-size: 12px;
  }
}
.p-contact__item input, .p-contact__item select {
  width: 100%;
  height: 76px;
  padding-left: 36px;
  padding-right: 36px;
  border-radius: 3px;
  font-size: 26px;
}
@media screen and (max-width: 1023px) {
  .p-contact__item input, .p-contact__item select {
    height: 31px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 11px;
  }
}
.p-contact__item input::-webkit-input-placeholder {
  font-size: 26px;
  color: #8C8C8D;
  line-height: 76px;
}
.p-contact__item input::-moz-placeholder {
  font-size: 26px;
  color: #8C8C8D;
  line-height: 76px;
}
.p-contact__item input:-ms-input-placeholder {
  font-size: 26px;
  color: #8C8C8D;
  line-height: 76px;
}
.p-contact__item input::-ms-input-placeholder {
  font-size: 26px;
  color: #8C8C8D;
  line-height: 76px;
}
.p-contact__item input::placeholder {
  font-size: 26px;
  color: #8C8C8D;
  line-height: 76px;
}
@media screen and (max-width: 1023px) {
  .p-contact__item input::-webkit-input-placeholder {
    font-size: 11px;
    line-height: 0;
  }
  .p-contact__item input::-moz-placeholder {
    font-size: 11px;
    line-height: 0;
  }
  .p-contact__item input:-ms-input-placeholder {
    font-size: 11px;
    line-height: 0;
  }
  .p-contact__item input::-ms-input-placeholder {
    font-size: 11px;
    line-height: 0;
  }
  .p-contact__item input::placeholder {
    font-size: 11px;
    line-height: 0;
  }
}
.p-contact__item select {
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /* デフォルトの矢印を非表示 */
  cursor: pointer;
}
.p-contact__item textarea {
  width: 100%;
  padding: 20px;
  border-radius: 3px;
  font-size: 26px;
  line-height: 1.5;
  height: 200px;
  resize: vertical;
}
@media screen and (max-width: 1023px) {
  .p-contact__item textarea {
    height: 120px;
    padding: 10px;
    font-size: 11px;
  }
}

.p-contact__selectWrap {
  position: relative;
}
.p-contact__selectWrap::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 15px 0 15px;
  border-color: #231815 transparent transparent transparent;
}
@media screen and (max-width: 1023px) {
  .p-contact__selectWrap::after {
    border-width: 7px 6px 0 6px;
    right: 10px;
  }
}

.p-contact__button {
  margin-top: 70px;
}
@media screen and (max-width: 1023px) {
  .p-contact__button {
    margin-top: 30px;
  }
}
.p-contact__button button {
  color: #FFFFFF;
  font-size: 26px;
  width: 200px;
  height: 100px;
  border-radius: 3px;
  background-color: #231815;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .p-contact__button button {
    width: 85px;
    height: 42px;
    font-size: 11px;
  }
}

@media screen and (max-width: 519px) {
  .u-hidden--sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-hidden--tab {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .u-hidden--pc {
    display: none;
  }
}

.u-appear--sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .u-appear--sp {
    display: block;
  }
}
.u-appear--tab {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-appear--tab {
    display: block;
  }
}
.u-appear--pc {
  display: none;
}
@media screen and (max-width: 1023px) {
  .u-appear--pc {
    display: block;
  }
}

.test {
  color: #ff0000;
  font-size: 5rem;
  position: relative;
  padding: 100px 200px;
  font-weight: 700;
}

::-webkit-input-placeholder {
  color: gray;
}

::-moz-placeholder {
  color: gray;
}

:-ms-input-placeholder {
  color: gray;
}

::-ms-input-placeholder {
  color: gray;
}

::placeholder {
  color: gray;
}

.image {
  background-image: url(image@1x.png);
}