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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-family: "BIZ UDMincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.05em;
  color: #333333;
  background-color: #e9e9e9;
}

a {
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
  color: inherit;
}

a:hover {
  opacity: 0.7;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

p {
  margin: 0;
}

ul, dl, dd {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  margin: 0;
}

/* -----------------------------------------
   パーツ共通
----------------------------------------- */
.btn-primary {
  display: inline-block;
  border: 1px solid #9d8b68;
  color: #9d8b68;
  padding: 12px 48px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  background: #e9e9e9;
  font-family: "Cormorant Upright", serif;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .btn-primary {
    padding: 8px 32px;
    font-size: 0.8rem;
  }
}
.btn-primary:hover {
  background: #413937;
  color: #e9e9e9;
  border: 1px solid #e9e9e9;
  opacity: 1;
}

/* -----------------------------------------
   Section Common
----------------------------------------- */
.section {
  padding: 70px 0 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  font-family: "Cormorant Upright", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #333333;
  margin: 0;
  line-height: 1;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  background: url(../images/title_decoration.png) no-repeat center top;
  padding-top: 40px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8%;
}

.txt {
  margin-top: 50px;
}

.section-text {
  margin-top: 50px;
  margin-bottom: 50px;
}

.caption {
  font-family: Sawarabi Mincho, serif;
  font-size: 24px;
  line-height: 1.6;
}

.caption-deco {
  font-family: Sawarabi Mincho, serif;
  font-size: 13px;
  line-height: 1.6;
  color: #868b8d;
  margin-top: 20px;
}

.caption-border {
  display: inline-block;
  height: 50px;
  width: 40px;
  border-bottom: 1px solid #868b8d;
}

/* -----------------------------------------
   オープニングアニメーション
----------------------------------------- */
.opening-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #050201;
  z-index: 999;
  animation: openingAnimation 1s cubic-bezier(0.25, 1, 0.5, 1) 1s forwards;
  pointer-events: none;
}
@keyframes openingAnimation {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes openingAnimation {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* -----------------------------------------
   #main-header 
----------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 16px 0;
  background-color: #050201;
  color: #FDFCFB;
}
.header.menu-open {
  z-index: 1002;
}
.header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo img {
  width: 150px;
}
.header .main-nav ul {
  display: flex;
  gap: 32px;
}
.header .nav-link {
  position: relative;
  font-family: "Cormorant Upright", serif;
  font-size: 0.8rem;
  color: #FDFCFB;
}
.header .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #9d8b68;
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.header .nav-link:hover::after {
  width: 100%;
}
.header .menu-toggle {
  position: relative;
  z-index: 1001;
  display: none;
  width: 30px;
  height: 20px;
  cursor: pointer;
}
.header .menu-toggle span {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e9e9e9;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.header .menu-toggle span:nth-child(1) {
  top: 0;
}
.header .menu-toggle span:nth-child(2) {
  top: 9px;
}
.header .menu-toggle span:nth-child(3) {
  bottom: 0;
}
.header .menu-toggle.active span {
  background-color: #333333;
}
.header .menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.header .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header .menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}
@media (max-width: 768px) {
  .header .menu-toggle {
    display: block;
  }
  .header .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background-color: #e9e9e9;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .header .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header .main-nav ul {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .header .main-nav .nav-link {
    font-size: 1.2rem;
    color: #333333;
  }
}

/* -----------------------------------------
   #hero
----------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url(../images/topimage.PNG);
  background-size: cover;
  background-position: center;
  animation: slowZoom 2s ease-out 1.5s backwards;
}
@keyframes slowZoom {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.hero .hero-copy {
  position: absolute;
  top: 57%;
  left: 50%;
  width: 100%;
  text-align: center;
  z-index: 10;
  transform: translate(-50%, -50%);
  animation: ZoomIn 2s cubic-bezier(0.25, 1, 0.5, 1) 3.5s forwards;
  opacity: 0;
  color: #FDFCFB;
  font-size: 1.1rem;
}
@keyframes ZoomIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero .hero-lottie {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  max-width: 500px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero .scroll-down {
  position: absolute;
  z-index: 10;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Cormorant Upright", serif;
  font-size: 0.8rem;
  opacity: 0.8;
  animation: bounce 2s infinite 6s;
  color: #FDFCFB;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
@media (min-width: 1080px) {
  .hero .scroll-down {
    bottom: 40px;
  }
}
@media (min-width: 1080px) {
  .hero .hero-bg {
    background-position: center 20%;
  }
}

/* -----------------------------------------
   #btn-reserve
----------------------------------------- */
#btn-reserve {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1000;
  opacity: 0;
  animation: fadeInUp 2s cubic-bezier(0.25, 1, 0.5, 1) 4.5s forwards;
}
@media (min-width: 768px) {
  #btn-reserve {
    left: 92%;
    transform: translate(-100%, 0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* -----------------------------------------
   #section-concept
----------------------------------------- */
#concept {
  padding: 0 0 100px;
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: auto;
  /* 1. トップの大きな画像 */
  /* 2. テキストエリア（共通） */
  /* 3. 背景画像パーツ*/
  /* -----------------------------------------
  PCレイアウト（画面幅768px以上）
  ----------------------------------------- */
}
#concept #concept-bg-01 {
  background: url(../images/about01.png) no-repeat center;
  background-size: cover;
  height: 35vw;
  max-height: 450px;
  width: 100%;
  margin-top: 80px;
}
#concept .section-inner {
  position: relative;
  z-index: 10;
  padding-top: 48px;
}
#concept .section-inner .section-text {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: left;
  background-color: rgba(233, 233, 233, 0.8);
}
#concept #concept-bg-02, #concept #concept-bg-03 {
  position: static;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 80%;
  aspect-ratio: 1/1;
  max-width: 300px;
}
#concept #concept-bg-02 {
  background-image: url(../images/about02.png);
  margin-right: 8%;
  margin-left: auto;
}
#concept #concept-bg-03 {
  background-image: url(../images/about03.png);
  margin-left: 8%;
  margin-top: 24px;
}
@media (min-width: 768px) {
  #concept {
    height: auto;
    min-height: 1300px;
  }
  #concept .section-inner {
    padding-top: 100px;
  }
  #concept #concept-bg-02 {
    position: absolute;
    top: 550px;
    right: 4%;
    width: 30vw;
    aspect-ratio: 3/4;
    max-width: 450px;
    margin: 0;
  }
  #concept #concept-bg-03 {
    position: absolute;
    top: 850px;
    left: 4%;
    width: 25vw;
    aspect-ratio: 3/4;
    max-width: 380px;
    margin: 0;
  }
  #concept #concept-bg-04 {
    position: absolute;
    bottom: 0;
    margin-top: 0;
  }
}

/* -----------------------------------------
   #section-menu
----------------------------------------- */
#menu {
  padding-top: 85px;
  background-color: #CDC9C4;
  /* -----------------------------------------
  PCレイアウト（画面幅768px以上）
  ----------------------------------------- */
}
#menu .section-catch .img {
  background: url(../images/menu01.png) no-repeat;
  background-size: cover;
  background-position: 50%;
  width: 100vw;
  height: 35vh;
  margin-top: 50px;
}
#menu .section-catch .section-text {
  margin-top: 48px;
  margin-inline: 8%;
}
@media (min-width: 768px) {
  #menu .section-catch {
    display: flex;
    gap: 40px;
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 8%;
  }
  #menu .section-catch .section-text {
    margin-inline: 0;
  }
  #menu .section-catch .img {
    width: 80%;
  }
}/*# sourceMappingURL=style.css.map */