@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #2f2f2f;
  --white-color: #fff;
  --primary-color: #927750;
  --base-color: #fcf2e4;
  --sub-color: linear-gradient(to right, #a18864 3%, #a9916f 67%);
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */

html {
  background-color: var(--base-color);
}

.js_body {
  color: var(--black-color);
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
  background-color: var(--base-color);
}


/* クリックした際の青い枠線を削除 */
*:focus {
  outline: none;
}

/* タップした際の青い四角を削除 */
button,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

/* ---------- utility ---------- */

@media screen and (min-width: 375px) {
  .u_sm-dn {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .u_lg-dn {
    display: none;
  }
}

/* ---------- layout ---------- */

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: 750px;
  justify-content: center;
}

@media screen and (min-width: 360px) {
  .l_container-lg {
  width: 100%;
  }

}

.l_contents {
  padding: 40px 0 80px;
}

.l_header {
  background-color: var(--primary-color);
  height: 80px;
  width: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
}

@media screen and (min-width: 1080px) {
  .l_header {
    padding: 0 48px;
  }
}

.l_header-logo {
  height: 100%;
  font-size: 20px;
  font-weight: bold;
  color: var(--white-color);
}

.l_header-logo_link {
  height: 100%;
  display: flex;
  align-items: center;
}

.l_header-logo_img {
  height: 50px;
}

.l_header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--base-color);
  z-index: var(--z-index-header);
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    position: static;
    background: transparent;
    width: auto;
    height: auto;
    opacity: 1;
    pointer-events: inherit;
  }
}

.l_header-nav_list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    display: flex;
    gap: 0 48px;
    position: static;
    transform: none;
    align-items: center;
  }
}

.l_header-nav_item {
  color: var(--primary-color);
  text-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item {
    color: var(--white-color);
    font-weight: normal;
    font-size: 20px;
    height: 100%;
    display: flex;
    align-items: center;
  }
}

.l_header-nav_item:not(:first-child) {
  margin-top: 40px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item:not(:first-child) {
    margin-top: 0;
  }
}

.l_header-nav_link-instagram {
  width: 30px;
  height: 30px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_link-instagram {
  display: none;
}
}

.l_header-nav_link-instagram-light{
  display: none;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_link-instagram-light{
  display: flex;
  width: 30px;
}
}

.l_footer {
  padding: 8px 0 8px;
  text-align: center;
  background: var(--sub-color);
}

.l_footer-copyright_txt {
  font-size: 14px;
  color: var(--white-color);
}

/* ---------- module ---------- */

.m_opening {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: var(--z-index-modal);
  background: var(--base-color);
  display: flex;
}

.m_opening_logo {
  text-align: center;
  margin: auto;
  width: 300px;
}

@media screen and (min-width: 1080px) {
  .m_opening_logo {
    width: 640px;
  }
}

.m_btn {
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  color: var(--white-color);
  font-weight: bold;
  overflow: hidden;
  font-size: 20px;
}

.m_btn:hover {
  opacity: 0.9;
}

.m_btn_input {
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
}

.m_btn__line {
  color: var(--primary-color);
  background-color: var(--base-color);
}

.m_btn__line::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/LINE_icon.svg) center / contain no-repeat;
  margin-right: 16px;
}

/* セクションタイトル */

.m_section_title {
  color: var(--primary-color);
  position: relative;
  font-size: 28px;
  font-weight: bold;
  margin-top: 16px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .m_section_title {
    font-size: 32px;
  }
}

.m_section_title::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 30px;
  background: var(--primary-color);
  top: 130%;
  left: 50%;
  transform: translateX(-50%);
}

/* セクションタイトル（予約） */

.m_section_title-reservation {
  color: var(--base-color);
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 56px;
  text-align: center;
  position: relative;
}

.m_section_title-reservation::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 30px;
  background: var(--base-color);
  top: 130%;
  left: 50%;
  transform: translateX(-50%);
}

/* CTA */

.m_cta {
  padding: 80px 16px;
  background: url(../img/reservation.jpg) center / cover;
}

@media screen and (min-width: 768px) {
  .m_cta {
    padding: 96px 0;
  }
}

.m_cta_box {
  text-align: center;
}

.m_cta_txt {
  font-family: "Noto sans jp";
  color: var(--base-color);
  letter-spacing: 0;
  margin-bottom: 24px;
}

@media screen and (min-width: 1080px) {
  .m_cta_txt {
    font-size: 20px;
  }
}

.m_cta_btn-wrapper {
  width: 350px;
  height: 80px;
  margin: 16px auto 0;
}

/* ハンバーガーメニュー */

.m_hamburger {
  width: 40px;
  height: 28px;
  position: relative;
  z-index: var(--z-index-menu);
  background: transparent;
}

@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  background-color: var(--base-color);
  width: 100%;
  height: 1.5px;
  position: absolute;
  left: 50%;
  transition: 0.3s;
}

.m_hamburger-bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.m_hamburger-bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}



/* キービジュアル */

.m_kv {
  height: 100dvh;
  background:
    url(../img/kv_square.png) no-repeat center bottom / cover;
  margin-bottom: 48px;
  padding-bottom: 20px;
}


.m_kv-inner {
 height: 100%;
 position: relative;
  text-align: center;
  padding-top: 100px;
  top: 0;
  transform: translateY(10%);
}

@media screen and (max-width: 400px) {
  .m_kv-inner {
  padding-top: 80px;
  }
}


.m_kv-box {
  
  position: absolute;
  height: 50%;
  width: 100%;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
}




.m_kv_copy {
    font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: var(--base-color);
  text-shadow: 2px 2px 2px rgba(170, 170, 170, 0.16);
  margin: 0 auto;

}

@media screen and (min-width: 560px) {
  .m_kv_copy {
    font-size: 32px;
  }
}

@media screen and (max-width: 400px) {
  .m_kv_copy {
    font-size: 16px;
  }
}


.m_kv_logo-wrapper{
  width: 80%;
  max-width: 400px;
  margin: 0 auto;
  
}


.m_kv_logo {
  object-fit: contain;
}

.m_kv_scroll-wrapper{
position: absolute;
left: 50%;
bottom: 60px;
transform: translateX(-50%);
}

@media screen and (max-width: 430px) {
  .m_kv_scroll-wrapper{
bottom: 80px;
}
}


.m_kv_scroll-text{
  color: var(--base-color);
position: relative;
font-size: 12px;
}

.m_kv_scroll-text::after {
  content: "";
  display: block;
  width: 1px;
  height: 37px;
  background-color: var(--base-color);
  position: relative;
  margin: 12px auto 0;
}

.m_kv_scroll-text::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--base-color);
  transform: rotate(45deg);
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}



/* ポスト */

.m_posts {
  margin: 48px auto 0;
  max-width: var(--content-width-lg);
}

.m_post:not(:first-child) {
  margin-top: 40px;
}

@media screen and (min-width: 1200px) {
  .m_post:not(:first-child) {
    margin-top: 0;
  }
}

.m_post_title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-top: 24px;
}

@media screen and (min-width: 1080px) {
  .m_post_title {
    font-size: 20px;
  }
}

.m_post_txt {
  margin-top: 24px;
  font-family: "Noto Sans JP";
}

.m_post_img {
  display: block;
  margin: 0 auto;
  height: auto;
  width: 60%;
  object-fit: contain;
}


/* ---------- トップキャッチコピー ---------- */


.top_catchcopy{
  margin: 0 auto;
  display: block;
  width: fit-content;
  padding: 15px 50px;
  border: 0.5px solid var(--primary-color);
  text-align: center;
  border-radius: 100px;
  margin-top: 56px;
}

.top_catchcopy_text{
  font-size: 20px;
  color: var(--primary-color);
  font-weight: bold;
  text-align: center;
}


/* プロフィール（悩み） */

.top_problem_lists{
  display: flex;
  justify-content: center;
    margin-top: 20px;
}

.top_problem_list{
  background-color: var(--white-color);
  width: 100%;
  max-width: 450px;
  padding-top: 16px;
  padding-bottom: 16px;

}

.top_problem_item{
  font-family: "Noto Sans JP";
  position: relative;
  padding-left: 24px;
  display: flex;
  width: 65%;
  text-align: left;
margin: 0 auto;
}

.top_problem_mark{
  position: absolute;
  width: 17px;
  height: 17px;
  top: 0;
  left: 0;
  transform: translateY(50%);
  background: url(../img/check.png) no-repeat center center / contain;
}

/* コンセプト */

.top_concept{
  background-color: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .top_concept_br {
    display: none;
  }
}

/* メニュー */

.top_menu_lists {
  margin-top: 56px;
  position: relative;
  max-width: 500px;
  padding: 50px 16px 0;
  box-sizing: border-box;
  margin: 0 auto;
  column-gap: 32px;
}


.carousel-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.top_menu_list {
  display: flex;
  overflow-x: auto;
  width: 100%;
  scroll-snap-type: x mandatory;
  gap: 40px;
  padding: 0;
  scrollbar-width: none; /* Firefox */
  scroll-behavior: smooth;
  list-style: none;
  justify-content: center;
}

.top_menu_list::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.top_menu_item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  overflow: hidden;
  display: none;
  flex-direction: column;
  align-items: stretch;
}

.top_menu_item.active{
  display: flex;
}

.top_menu_img-wrapper{
  height: 300px;
  aspect-ratio: 3 / 4;
  background-color: var(--primary-color);
  width: 100%;
  flex-shrink: 0;
}

.top_menu_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top_menu_item-text{
  margin-top: 16px;
  text-align: center;
  min-height: 1.5em;
  font-weight: bold;
}

.carousel-button {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-button::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--primary-color);
  border-right: 1px solid var(--primary-color);
  margin: auto;
  transform: rotate(45deg);
  transition: all 0.3s;
}

.carousel-button.prev {
  left: 40px;
}

/* 左向き矢印（←）に回転 */
.carousel-button.prev::before {
  transform: rotate(-135deg);
}


.carousel-button.next {
  right: 40px;
}

/* 右向き矢印（→）に回転 */
.carousel-button.next::before {
  transform: rotate(45deg);
}




/* インジケーター */
.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  gap: 8px;
}

.carousel-indicators .dot {
  width: 5px;
  height: 5px;
  background: lightgray;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.carousel-indicators .dot.active {
  background: var(--primary-color);
}

/* ここまでメニュー */

/* インフォメーション */

.top_info{
  background-color: var(--white-color);
}

.top_info-section_table {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.top_info-section_tr:nth-child(2n) {
  background: var(--gray-color02);
}

.top_info-section_th {
  font-family: "Noto Sans JP";
  font-weight: bold;
  width: 124px;
  padding-left: 8px;
  padding: 16px;
  position: relative;
}

.top_info-section_td {
  font-family: "Noto Sans JP";
  padding: 16px 16px 16px 8px;
}


/* ---------- js ---------- */
.js_body.is-active {
  overflow: hidden;
}

.js_opening.is-active {
  visibility: hidden;
}

.js_navigation {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

@media screen and (min-width: 1080px) {
  .js_navigation {
    pointer-events: auto;
    opacity: 1;
  }
}

.js_navigation.is-active {
  opacity: 1;
  pointer-events: inherit;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
  background-color: var(--primary-color);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
  background-color: var(--primary-color);
}

