@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  color: #010407;
  background-color: #61391a;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.l-inner {
  width: 100%;
  max-width: 31.25rem;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1250px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.l-lp {
  padding-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .l-lp {
    padding-top: 3.75rem;
  }
}

.c-text {
  color: #fff;
  line-height: 2;
  margin-top: 0.5rem;
  font-size: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-text {
    font-size: 1.5625rem;
    margin-top: 0.625rem;
  }
}

.c-title {
  text-align: center;
  font-size: 1.5rem;
  background: linear-gradient(5deg, #f0c131 0%, #f0c131 25%, #f0c131 60%, #e7d085 87%, #f8eba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 1.875rem;
  }
}

.c-title.c-title--size {
  font-size: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .c-title.c-title--size {
    font-size: 1.875rem;
  }
}

.p-bg {
  width: 100%;
  height: 4.0625rem;
  background-image: url(../images/common/bg-sp-03.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-bg {
    height: 6.25rem;
    background-image: url(../images/common/bg_img-03.png);
  }
}

.p-christmas-tree {
  position: relative;
}

.p-christmas-tree::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 16.875rem;
  background-image: url(../images/common/bg-sp-03.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-christmas-tree::before {
    height: 20.8125rem;
    background-image: url(../images/common/bg_img-03.png);
  }
}

.p-christmas-tree__text-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-christmas-tree__text-body {
    margin-top: 0.625rem;
  }
}

.p-christmas-tree__img {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-christmas-tree__img {
    margin-top: 4.5rem;
  }
}

.p-entrance {
  position: relative;
}

.p-entrance::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 16.875rem;
  background-image: url(../images/common/sp_img02.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-entrance::before {
    height: 20.8125rem;
    background-image: url(../images/common/bg_img-01.png);
  }
}

.p-entrance__text-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-entrance__text-body {
    margin-top: 0.625rem;
  }
}

.p-entrance__img {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-entrance__img {
    margin-top: 4.5rem;
  }
}

.p-footer {
  background-color: #231815;
  padding: 1rem 0;
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    font-size: 1rem;
    padding: 1.5625rem 0;
  }
}

.p-fountain {
  position: relative;
}

.p-fountain::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 20.8125rem;
  background-image: url(../images/common/sp_img02.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-fountain::before {
    height: 20.8125rem;
    background-image: url(../images/common/pc_img02.jpg);
  }
}

.p-fountain__text-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0.625rem;
}

.p-fountain__text-caution {
  color: #fff;
  margin-top: 0.625rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-fountain__text-caution {
    font-size: 1.25rem;
  }
}

.p-fountain__img {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-fountain__img {
    margin-top: 4.5rem;
  }
}

.p-fountain__img img {
  width: 100%;
}

.p-fv {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 25rem;
}
@media screen and (min-width: 768px) {
  .p-fv {
    height: 100vh;
  }
}

.p-fv__inner {
  height: inherit;
  min-height: inherit;
}

.p-fv__wrap,
.p-fv__title-wrap {
  position: absolute;
  z-index: 2;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  text-align: center;
}

.p-fv__title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-fv__title img {
  width: 100%;
  min-width: 22.1875rem;
}
@media screen and (min-width: 768px) {
  .p-fv__title img {
    max-width: 50rem;
  }
}

.p-fv__img {
  width: 100%;
  height: 100%;
}

.p-fv__img picture {
  width: 100%;
  height: 100%;
}

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

.p-lighting {
  background-image: url(../images/common/bg-sp.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-lighting {
    background-image: url(../images/common/bg.png);
  }
}

.p-lighting::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 16.875rem;
  background-image: url(../images/common/sp_img01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-lighting::before {
    height: 20.8125rem;
    background-image: url(../images/common/pc_img01.jpg);
  }
}

.p-lighting__text-body {
  text-align: center;
  color: #40220f;
}

.p-lighting__text {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-lighting__text {
    font-size: 1.625rem;
  }
}

.p-lighting__image-body {
  display: grid;
  gap: 0.5rem;
  grid-auto-flow: dense;
  margin-top: 3.4375rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .p-lighting__image-body {
    margin-top: 4.5rem;
    gap: 1rem;
  }
}

.p-lighting__image-left {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-lighting__image-left {
    gap: 0.5rem;
  }
}

.p-lighting__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-lighting__img:last-of-type {
  margin-top: 0.5rem;
}

.p-lighting__img-right img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 400/551;
}
@media screen and (min-width: 768px) {
  .p-lighting__img-right img {
    aspect-ratio: 1035/1405;
  }
}

.p-top-button {
  position: fixed;
  bottom: 1rem;
  right: calc(50% - min(49.5vw, 31.25rem));
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .p-top-button {
    right: calc(50% - min(49.5vw, 43.75rem));
    width: 5rem;
    height: 5rem;
  }
}

.p-top-button a {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s, background-image 0.5s;
}

.p-restaurant {
  position: relative;
}

.p-restaurant::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 20.8125rem;
  background-image: url(../images/common/bg-sp-03.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-restaurant::before {
    background-image: url(../images/common/bg_img-01.png);
  }
}

.p-restaurant__text-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-restaurant__text-body {
    margin-top: 0.625rem;
  }
}

.p-restaurant__text {
  color: #fff;
  line-height: 2;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-restaurant__text {
    font-size: 1.5625rem;
    margin-top: 0.625rem;
  }
}

.p-restaurant__img {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-restaurant__img {
    margin-top: 4.5rem;
  }
}

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

.p-terrace {
  position: relative;
}

.p-terrace::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 16.875rem;
  background-image: url(../images/common/bg-sp-02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-terrace::before {
    height: 20.8125rem;
    background-image: url(../images/common/bg_img-01.png);
  }
}

.p-terrace__text-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-terrace__text-body {
    margin-top: 0.625rem;
  }
}

.p-terrace__img {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-terrace__img {
    margin-top: 4.5rem;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.js-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

/* 表示時 */
.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/*# sourceMappingURL=style.css.map */
