@charset "UTF-8";

/*メインカラーピンク：#ef96bd


*/

/* ベース */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: #622d18;
}

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


/* ===== ヘッダー（ロゴは常に前面へ） ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 20px;
  z-index: 2001; /* ← オーバーレイより前に上げる */

  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.site-header .logo-link img {
  height: 50px;
  display: block;
}

/* PCナビ（デスクトップ表示） */
.global-nav--pc {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.global-nav--pc li a {
  text-decoration: none;
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 4px 0;
  transition: color 0.3s;
}

.global-nav--pc li a:hover {
  color: #ef96bd;
}

/* ===== ハンバーガー ===== */
.menu-toggle {
  display: none;
  position: relative;
  width: 32px;
  height: 26px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2002; /* ← ロゴよりさらに前（常に押せる） */
}

.menu-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

/* ✖︎状態：中央でクロス */
.menu-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* オーバーレイ表示中も右上固定 */
html.nav-open .menu-toggle {
  position: fixed;
 
  right: 18px;
  z-index: 2002;
}

html.nav-open .menu-toggle span {
  background: #111;
}

/* ===== モバイル・オーバーレイ ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100; /* ヘッダーより下（＝ロゴは見える） */
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  overflow-y: auto;

  /* スムーズ表示 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ×ボタンは重複防止のため非表示（menu-toggleを使用） */
.overlay-close {
  display: none;
}

/* モバイル用メニュー内容（フェード＋スライド） */
.global-nav--sp {
  list-style: none;
  margin: 0;
  padding-top: clamp(140px, 25vh, 220px);
  padding-bottom: clamp(60px, 10vh, 100px);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}


.global-nav--sp li {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.nav-overlay.active .global-nav--sp li {
  opacity: 1;
  transform: none;
}

/* 階段状アニメーション */
.nav-overlay.active .global-nav--sp li:nth-child(1) { transition-delay: 0.05s; }
.nav-overlay.active .global-nav--sp li:nth-child(2) { transition-delay: 0.1s; }
.nav-overlay.active .global-nav--sp li:nth-child(3) { transition-delay: 0.15s; }
.nav-overlay.active .global-nav--sp li:nth-child(4) { transition-delay: 0.2s; }

.global-nav--sp li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 8px 12px;
  transition: color 0.3s;
}

.global-nav--sp li a:hover {
  color: #ef96bd;
}

/* 背面スクロール停止 */
html.nav-open {
  height: 100%;
  overflow: hidden;
}

/* ===== レスポンシブ ===== */
@media (max-width: 700px) {
  .global-nav--pc {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}




/*❎ページTOPに戻るボタン*/

.page-top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 40px;
  bottom: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  border: 0;
  background: none;
  transition: .2s;
  z-index: 50;
}

.page-top p{
  writing-mode: vertical-rl;
  text-decoration: none;
  text-transform: uppercase;
  height: 85px;
  margin: 0;
  letter-spacing: 5px;
  text-align: right;
}

.page-top p:before {
    content: "";
    position: absolute;
    top: 2px;
    right: -5px;
    width: 2px;
    height: 20px;
    background: #000;
    transform: skewX(-150deg);
}

.page-top p:after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 2px;
    height: 85px;
    background: #000;
}

.is-active {
  opacity: 1;
  visibility: visible;
}

/*❎フッター*/

footer{
  background-color: #e6c0c0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 50px;
  gap: 40px;
  position: relative;
  overflow: hidden;
}


footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/footer02.jpg");
  background-size: cover;
  background-position:bottom left;
  opacity: 0.2;
  z-index: 0;
}

/* フッター内の全コンテンツは前面へ */
footer > * {
  position: relative;
  z-index: 1;
}

/* iframe（Googleマップ） */
footer iframe{
  width: 40%;
  height: 30vh;
}

/* テキスト部分を縦中央揃えに */
.footer-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: fit-content;       
  max-width: none;     
}

/* ロゴ */
.footer-text img{
  max-width: 180px;
  margin-bottom: 10px;
}

/* h1（店名）行間詰める */
.footer-text h1{
  font-size: 1.8rem;
  line-height: 2rem;
  margin: 5px 0;
}

.footer-text h1 span{
  font-size: 1.2rem;
  line-height: 1.4rem;
}

.footer-text p{
  margin: 5px 0;
  line-height: 1.6rem;
  font-size: 1.2rem;
}

/* 営業時間 */
.footer-text h2{
  font-size: 1.3rem;
  line-height: 1.6rem;
  margin: 8px 0;
}

/* 定休日 */
.footer-text h3{
  font-size: 1.2rem;
  line-height: 1.5rem;
  margin: 5px 0 0;
}
.footer-text h3 span{
  font-size: 1rem;
}


/* 画面幅が700px以下のとき（スマホ表示） */
@media screen and (max-width: 700px) {
  footer{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
  }

  footer > * {
    position: relative;
    z-index: 1;
  }

  footer iframe{
    width: 100%;
    height: 40vh;
    margin-bottom: 25px;
  }

  .footer-text{
    width: fit-content !important;
    max-width: none !important;
    align-items: flex-start;
  }

  .footer-text img{
    max-width: 160px;
    margin-bottom: 10px;
  }

  .footer-text h1{
    font-size: 1.6rem;
    line-height: 1.9rem;
  }

  .footer-text h1 span{
    font-size: 1.1rem;
    line-height: 1.4rem;
  }

  .footer-text p,
  .footer-text h2,
  .footer-text h3{
    text-align: left;
    width: 100%;
  }
}

/* 🔥 プライバシーポリシーだけは文字幅ぴったりの枠線 */
a.privacy-link{
  display: inline !important;
  width: auto !important;
  border: 1px solid #622d18 !important;
  color: #622d18 !important;
  text-decoration: none !important;
  padding: 0 !important;
  line-height: 1 !important;
  background: transparent !important;
  box-sizing: border-box;
  align-self: flex-start;
}

/* 🔥 それ以外の border を全部消す（横長の線を完全排除） */
.footer-text > *:not(.privacy-link) {
  border: none !important;
}



/*❎共通タイトル装飾*/
.bg-title {
  text-align: center;
  margin-top: 50px;
  position: relative;
  font-size: 1.5rem;
  z-index: 2;
}

/* 薄いピンクの英単語を背後に配置 */
.bg-title::after {
  content: attr(data-en);         /* ← data-en に入れた文字を使う */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%);
  font-size: 5rem;
  color: rgba(229, 171, 190, 0.40); /* #ef96bd を薄く */
  font-weight: 700;
  pointer-events: none;
  z-index: -1;
}

.bg-title-white{
	  text-align: center;
  margin-top: 50px;
  position: relative;
  font-size: 1.5rem;
  z-index: 2;
}
.bg-title-white::after{
	content: attr(data-en);         /* ← data-en に入れた文字を使う */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%);
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.70); /* #ef96bd を薄く */
  font-weight: 700;
  pointer-events: none;
  z-index: -1;
}