@charset "utf-8";

/* ==========================================================================
   基本設定（色・フォント）
   ========================================================================== */
:root {
  --bg-color: #ffffff;
  --text-color: #333333;
  --accent-color: #a38f68;
  --accent-bg-color: #d4c29ee6;
  --border-color: rgba(0, 0, 0, 0.1);
  --font-heading: 'Bodoni Moda', serif;
  --font-body: 'Bodoni Moda', serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* ==========================================================================
   グリッドシステム (g-1の最適化)
   ========================================================================== */
.row.g-1 {
  --bs-gutter-x: 15px;
  --bs-gutter-y: 15px;
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--bs-gutter-x) * -.5);
  margin-left: calc(var(--bs-gutter-x) * -.5);
}

.row.g-1>[class*="col-"] {
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  display: flex;
}

@media (max-width: 576px) {
  .row.g-1 {
    --bs-gutter-x: 6px;
    --bs-gutter-y: 6px;
  }
}


html,
body {
  overflow-x: hidden;
}

a:hover {
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.5s ease;
  cursor: pointer;

}

img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.zero-separator {
  border: none;
  border-top: 1px solid rgba(168, 151, 74, 0.2);
  margin: 40px 0;
  opacity: 1;
}

/* ==========================================================================
   ナビバー
   ========================================================================== */

#g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 40%;
  height: 100vh;
  background: #504f4fbe;
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 40%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-shadow: 0 0 10px #000;
}

.contents {
  font-size: 20px;
  letter-spacing: 6px;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .contents {
    font-size: 14px;
  }
}

@media screen and (max-width: 430px) {
  .contents {
    font-size: 12px;
  }
}

.furigana {
  font-size: 12px;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .furigana {
    font-size: 10px;
  }
}

@media screen and (max-width: 430px) {
  .furigana {
    font-size: 6px;
  }
}


/*========= ボタンのためのCSS ===============*/
.nav-btn {
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: rgba(196, 196, 196, 0.6);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

/*×に変化*/
.nav-btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #ffffff;
  width: 45%;
}

/* ハンバーガーボタンの線のデザイン */

.nav-btn span:nth-of-type(1) {
  top: 15px;
}

.nav-btn span:nth-of-type(2) {
  top: 23px;
}

.nav-btn span:nth-of-type(3) {
  top: 31px;
}

.nav-btn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.nav-btn.active span:nth-of-type(2) {
  opacity: 0;
}

.nav-btn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}


/* ==========================================================================
   トップページタイトル
   ========================================================================== */

.main-title {
  font-size: 2.8rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  color: var(--text-color);
  margin: 0;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .main-title {
    font-size: 1.5rem;
  }
}

/* ラベル (PRICE & RULE) */
.title-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--accent-color);
  margin-bottom: 8px;
  font-weight: 600;
}


/* ==========================================================================
   共通 - access
   ========================================================================== */

.tel,
.mail,
.instagram {
  text-decoration: none;
}

.tel:link,
.instagram:link,
.mail:link {
  color: #00925a;
  border: none;
}

.instagram:visited,
.mail:valid {
  color: #00925a;
}

iframe {
  width: 100%;
  aspect-ratio: 16/6;
  margin-top: 24px;
}

.access-header-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.access-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid rgba(168, 151, 74, 0.2);
}

.access-item {
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid rgba(168, 151, 74, 0.2);
  align-items: baseline;
}

.access-label {
  width: 30%;
  font-family: "Bodoni Moda", serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--accent-color);
}

.access-text {
  font-family: "Bodoni Moda", serif;
  width: 70%;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-color);
  font-weight: 300;
}

.access-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.access-link:hover {
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
}

.map-wrap iframe {
  width: 100%;
  height: 400px;
  filter: grayscale(30%);
  border-radius: 4px;
}

@media (max-width: 768px) {
  .access-item {
    flex-direction: column;
    padding: 20px 0;
  }

  .access-label {
    width: 100%;
    margin-bottom: 8px;
  }

  .access-text {
    width: 100%;
    font-size: 0.85rem;
  }

  .map-wrap iframe {
    height: 300px;
  }
}