@charset "utf-8";
/* CSS Document */
/* =========================================
       CSS Custom Properties
    =========================================*/ :root {
  --color-cream: #fdf8f0;
  --color-warm: #f5ede0;
  --color-gold: #c8a96e;
  --color-gold-dark: #B86B4E;
  --color-navy: #3d4f63;
  --color-navy-dark: #2c3a4a;
  --color-brown: #7a4f2d;
  --color-text: #3a2e24;
  --color-text-light: #7a6a5a;
  --color-white: #ffffff;
  --color-tag-seasonal: #c86b4a;
  --color-tag-new: #5a8a5a;
  --font-display: 'Dancing Script', cursive;
  --font-serif-en: 'Cormorant Garamond', serif;
  --font-serif-ja: 'Noto Serif JP', serif;
  --shadow-soft: 0 4px 20px rgba(58, 46, 36, 0.10);
  --shadow-card: 0 8px 32px rgba(58, 46, 36, 0.13);
  --radius: 8px;
  --transition: 0.35s ease;
  --header-h: 60px;
}
/* =========================================
       Reset & Base
    ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
} /*ページ内リンクをクリックした際、移動先まで滑らかにスクロール*/
body {
  background: linear-gradient(to bottom, #fdf8f0 40%, #FFE2AB 60%); /*backgroundにグラデーションんでカラーをかけ、中止でぼやかす*/
  min-height: 100vh; /*上でかけたグラデーションをbody全体に適用*/
  color: var(--color-text);
  font-family: var(--font-serif-ja);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit; /* 親の文字色を継承 */
  text-decoration: none; /* 必要に応じて下線も消す */
}
ul {
  list-style: none;
}

/* スクロールインジケーター */
.scroll-indicator {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 10;
  color: #ffffff;
  font-family: var(--font-serif-en);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}
.scroll-indicator::before {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.7));
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/* =========================================
       Section 共通
    ========================================= */
section {
  padding: 70px 24px;
}
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.section-heading img{
	margin:0 auto;
}
/*消すかも*/
.section-heading .en {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--color-gold-dark);
  line-height: 1;
  display: block;
}
.section-heading .ja {
  font-size: 0.75rem;
  color: var(--color-text-light);
  letter-spacing: 0.15em;
  display: block;
  margin-top: 2px;
text-decoration: underline;
}
/* フェードインアニメーション */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* =========================================
       Header — ベージュ背景→下へ透明グラデーション
    ========================================= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 100;
  /* 上:ベージュ → 下:透明 */
  background: linear-gradient(to bottom, rgba(253, 248, 240, 1) 0%, /*253, 248, 240*/ rgba(253, 248, 240, 0.6) 60%, rgba(253, 248, 240, 0) 100%);
  transition: background var(--transition);
}
/* スクロール後は固定 */
#header.scrolled {
  background: rgba(253, 248, 240, 0.95);
  box-shadow: 0 2px 12px rgba(58, 46, 36, 0.08);
  backdrop-filter: blur(8px); /* 背景に8pxのぼかしをかける */
}
.header-logo img {
  width: 140px;
  height: auto;
  margin-top: 30px;
	filter: brightness(1.2) saturate(0.9);/*少し明るく、少し淡い色合いに1が元の明るさ、1.2は少し明るい*/
  opacity: 0.9;/*さらに少しだけ透明にする*/
}
/* ハンバーガーボタン */
.hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 300;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-gold-dark);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}
/* ハンバーガー → × 変形 */
.hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/* =========================================
       Drawer Menu
    ========================================= */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 58, 74, 0.55);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--color-navy);
  z-index: 250;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  color: var(--color-cream);
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer-logo {
  margin-bottom: 48px;
}
.drawer-logo img {
  width: 120px;
  margin: 0 auto;
  filter: brightness(1.1);
}
.drawer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 36px;
  text-align: center;
}
.drawer-nav a {
  font-family: var(--font-serif-en);
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  color: var(--color-cream);
  transition: color var(--transition);
  position: relative;
}
.drawer-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--color-gold);
  transition: left var(--transition), right var(--transition);
}
.drawer-nav a:hover {
  color: var(--color-gold);
}
.drawer-nav a:hover::after {
  left: 0;
  right: 0;
}
/* =========================================
       PC Header Nav (メディアクエリで表示)
    ========================================= */
.pc-nav {
  display: none;
}
/* =========================================
       Footer
    ========================================= */
#footer {
  background: var(--color-navy-dark);
  color: rgba(253, 248, 240, 0.7);
  padding: 48px 24px 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.footer-logo img {
  width: 140px;
  filter: brightness(1.2) saturate(0.9);
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.footer-nav a {
  font-family: var(--font-serif-en);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: rgba(253, 248, 240, 0.65);
  transition: color var(--transition);
}
.footer-nav a:hover {
  color: var(--color-gold);
}
.footer-sns {
  display: flex;
  gap: 16px;
}
.sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--color-white);
  transition: opacity var(--transition);
}
.sns-btn:hover {
  opacity: 0.8;
}
.sns-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.sns-line {
  background: #06c755;
}
.footer-copy {
  margin-top: 10px;
	font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(253, 248, 240, 0.35);
}
/* =========================================
       TOPへ戻るボタン（縦書き風）
    ========================================= */
.back-top-wrap {
  text-align: right;
  padding: 0 24px 48px;
}
.back-top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-serif-en);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--color-text-light);
  border: 1px solid rgba(160, 120, 64, 0.3);
  padding: 6px 18px;
  border-radius: 20px;
  transition: all var(--transition);
}
.back-top-link:hover {
  color: var(--color-gold-dark);
  border-color: var(--color-gold);
}
/* =========================================
       Media Queries — PC (768px以上)
    ========================================= */
@media (min-width: 768px) {
  :root {
    --header-h: 72px;
  }
  /* PCヘッダーナビ表示 */
  .hamburger {
    display: none;
  }
  .pc-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .pc-nav a {
    font-family: var(--font-serif-en);
    font-size: 1.2rem;
    letter-spacing: 0.14em;
    color: var(--color-navy-dark);
    transition: color var(--transition);
    position: relative;
  }
  #header.scrolled .pc-nav a {
    color: var(--color-navy);
  }
  .pc-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 100%;
    height: 1px;
    background: var(--color-gold);
    transition: right var(--transition);
  }
  .pc-nav a:hover::after {
    right: 0;
  }
  .pc-nav a:hover {
    color: var(--color-gold);
  }
  #header.scrolled .pc-nav a:hover {
    color: var(--color-gold-dark);
  }
  /* Section 余白 */
  section {
    padding: 90px 5%;
  }
  .section-heading .en {
    font-size: 3rem;
  }
 /* Footer */
  .footer-inner { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 40px; }
   .footer-nav ul { flex-direction: column;
	   gap: 24px; }
  

.footer-nav ul {
    flex-direction: row;
    gap: 24px;
}
.footer-sns {
    align-self: flex-start;
    flex-direction: row;
}	
}
 @media (min-width: 1200px) {
	
	 section { padding: 100px 8%; }

      .hero-caption {
        right: 80px;
        bottom: 100px;
      }
	 .hero-caption .main-copy {
        font-size: 2.8rem;
      } 
    }