@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;1,6..96,400&display=swap');

/* ==============================
   リセット
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "YuMincho", serif;
  background: #f9f6f0;
  color: #2b2b2b;
  line-height: 1.7;
  position: relative;
}

/* ==============================
   ヘッダー
============================== */
#main-header.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 60px !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  background: transparent !important;
  transition: all 0.4s ease !important;
}

#main-header.is-scrolled {
  background: rgba(250, 248, 240, 0.98) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
}

.header-inner {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 40px !important;
  align-items: center !important;
}

.h-box {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
}

.h-center {
  justify-content: center !important;
  flex: 0 0 auto !important;
  padding: 0 40px !important;
}

.h-right {
  justify-content: flex-end !important;
}

.brand-logo img {
  height: 40px !important;
  width: auto !important;
  display: block !important;
  transition: height 0.3s ease !important;
}

.is-scrolled .brand-logo img {
  height: 32px !important;
}

/* ==============================
   PC ナビ
============================== */
.pc-nav ul {
  display: flex !important;
  list-style: none !important;
  gap: 30px !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: center !important;
}

.pc-nav a {
  text-decoration: none !important;
  color: #ffffff !important;
  font-family: 'Bodoni Moda', "Times New Roman", serif !important;
  font-size: 13px !important;
  letter-spacing: 0.1em !important;
  white-space: nowrap !important;
  transition: color 0.3s !important;
}

.pc-nav a:hover {
  color: #d4af37 !important;
}

.is-scrolled .pc-nav a {
  color: #111111 !important;
}

/* ==============================
   ★ 言語切り替えボタン ★
============================== */
.lang-toggle {
  font-family: 'Bodoni Moda', "Times New Roman", serif !important;
  font-size: 12px !important;
  letter-spacing: 0.15em !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  background: rgba(0,0,0,0.25) !important;
  border: 1px solid rgba(255,255,255,0.6) !important;
  color: #ffffff !important;
  padding: 4px 12px !important;
  border-radius: 3px !important;
  margin-left: 20px !important;
}

.lang-toggle:hover {
  background: rgba(255,255,255,0.2) !important;
}

.is-scrolled .lang-toggle {
  background: none !important;
  border: 1px solid #d4af37 !important;
  color: #d4af37 !important;
}

.is-scrolled .lang-toggle:hover {
  background: #d4af37 !important;
  color: #fff !important;
}

.lang-toggle-sp {
  display: none !important;
  font-family: 'Bodoni Moda', "Times New Roman", serif !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  cursor: pointer !important;
  background: none !important;
  border: 1px solid #d4af37 !important;
  color: #d4af37 !important;
  padding: 3px 10px !important;
  border-radius: 3px !important;
  margin-right: 10px !important;
  transition: all 0.3s ease !important;
}

.lang-toggle-sp:hover {
  background: #d4af37 !important;
  color: #fff !important;
}

.lang-float {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  z-index: 9999 !important;
  background: none !important;
  border: 1px solid #d4af37 !important;
  color: #d4af37 !important;
  font-family: 'Bodoni Moda', "Times New Roman", serif !important;
  font-size: 12px !important;
  letter-spacing: 0.15em !important;
  padding: 5px 14px !important;
  border-radius: 3px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
}

.lang-float:hover {
  background: #d4af37 !important;
  color: #fff !important;
}

/* ==============================
   ハンバーガーボタン
============================== */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

.is-scrolled .menu-toggle {
  color: #111;
}

/* ==============================
   モバイルメニュー
============================== */
#navbar {
  display: none !important;
  position: fixed !important;
  top: 60px !important;
  left: 0 !important;
  width: 100% !important;
  background: rgba(250, 248, 240, 0.98) !important;
  border-bottom: 1px solid #d4af37 !important;
  z-index: 99998 !important;
  padding: 10px 0 20px !important;
}

#navbar.active {
  display: block !important;
}

#navbar ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

#navbar ul li a {
  display: block !important;
  padding: 14px 30px !important;
  font-family: 'Bodoni Moda', "Times New Roman", serif !important;
  font-size: 14px !important;
  letter-spacing: 0.15em !important;
  color: #111 !important;
  text-decoration: none !important;
  border-bottom: 0.5px solid #eee !important;
  transition: color 0.3s !important;
}

#navbar ul li a:hover {
  color: #d4af37 !important;
}

/* ==============================
   スマホ対応
============================== */
@media screen and (max-width: 1024px) {
  .pc-nav {
    display: none !important;
  }

  .h-left {
    flex: 0 !important;
  }

  .h-center {
    justify-content: flex-start !important;
    padding-left: 0 !important;
  }

  .menu-toggle {
    display: block !important;
  }

  .lang-toggle:not(.lang-float):not(.lang-toggle-sp) {
    display: none !important;
  }

  .lang-toggle-sp {
    display: inline-block !important;
  }

  .lang-float {
    display: inline-block !important;
  }
}

/* ==============================
   ヒーローセクション
============================== */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(70%) contrast(110%) saturate(90%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2));
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

/* ==============================
   スクロールインジケーター
============================== */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #cfae7d;
  z-index: 10;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.scroll-indicator:hover {
  opacity: 0.7;
}

.scroll-indicator span {
  display: block;
  font-family: 'Bodoni Moda', "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.scroll-indicator .line {
  width: 1px;
  height: 60px;
  background: #cfae7d;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.scroll-indicator .line::after {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  animation: scroll-line 2s infinite;
}

@keyframes scroll-line {
  0%   { top: -60px; }
  100% { top: 60px; }
}

/* ==============================
   コレクション見出し
============================== */
.collection-header {
  text-align: center;
  padding: 80px 0 0;
}

.collection-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bodoni Moda', "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: #cfae7d;
  text-transform: uppercase;
  margin: 0;
}

.collection-title::before,
.collection-title::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #cfae7d;
  max-width: 400px;
}

.collection-title::before { margin-right: 30px; }
.collection-title::after  { margin-left: 30px; }

@media screen and (max-width: 768px) {
  .collection-header { padding: 60px 0 0; }
  .collection-title::before,
  .collection-title::after { max-width: 80px; }
}

/* ==============================
   製品ピックアップ
============================== */
.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  padding: 60px 20px 100px;
}

.product {
  flex: 1 1 280px;
  max-width: 280px;
  text-align: center;
}

.product img {
  width: 100%;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.product img:hover {
  transform: scale(1.05);
}

.product h3 {
  margin-top: 15px;
  font-family: 'Bodoni Moda', "Times New Roman", serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
  .products { flex-direction: column; gap: 30px; }
  .product  { max-width: 90%; margin: 0 auto; }
}

/* ==============================
   ストーリー
============================== */
.story {
  padding: 100px 20px;
  background: #fefcf8;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.story-content img {
  width: 50%;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.story-text { flex: 1; }

.story-text h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", serif;
}

@media screen and (max-width: 768px) {
  .story-content { flex-direction: column; text-align: center; }
  .story-content img { width: 90%; }
}

/* ==============================
   プロセス（こだわり）
============================== */
.process {
  background: #fefcf8;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.process-step,
.process-step:nth-child(even) {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  width: 100%;
  text-align: left !important;
}

.process-step img {
  width: 400px !important;
  height: 300px !important;
  object-fit: cover !important;
  flex-shrink: 0;
}

.process-step .caption { flex: 1; }

@media screen and (max-width: 768px) {
  .process-step,
  .process-step:nth-child(even) {
    flex-direction: column !important;
    text-align: center !important;
  }
  .process-step img {
    width: 100% !important;
    height: auto !important;
  }
}

.story-num {
  display: flex;
  align-items: center;
  color: #cfae7d;
  font-family: 'Bodoni Moda', "Times New Roman", serif;
  font-size: 24px;
  margin-bottom: 10px;
  width: 100%;
}

.story-num::after {
  content: "";
  height: 1px;
  background-color: #eee;
  margin-left: 20px;
  flex-grow: 1;
  max-width: 60%;
}

.story-sub-title {
  display: block;
  color: #cfae7d;
  font-family: 'Bodoni Moda', "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.story-main-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.story-description {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.story-link {
  display: inline-block;
  margin-top: 30px;
  color: #cfae7d;
  text-decoration: none;
  font-family: 'Bodoni Moda', "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #cfae7d;
  padding-bottom: 4px;
  transition: opacity 0.3s;
}

.story-link:hover { opacity: 0.6; }

/* ==============================
   ふわっとアニメーション
============================== */
.story-content img,
.process-step img,
.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.story-content img.is-visible,
.process-step img.is-visible,
.scroll-fade.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ==============================
   フッター
============================== */
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.footer img {
  width: 120px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-links {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px 18px !important;
  margin: 15px auto !important;
  padding: 0 !important;
  list-style: none !important;
  width: 100% !important;
  text-align: center !important;
}

.footer-links a {
  color: #aaa !important;
  text-decoration: none !important;
  font-family: 'Bodoni Moda', "Times New Roman", serif !important;
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
  transition: color 0.3s !important;
  white-space: nowrap !important;
}

.footer-links a:hover {
  color: #d4af37 !important;
}

.footer p {
  font-size: 12px;
  color: #aaa;
  margin-top: 10px;
}

.instagram-link {
  display: inline-block !important;
  position: static !important;
  margin-top: 15px !important;
  color: #ffffff !important;
  font-size: 28px !important;
  text-decoration: none !important;
  line-height: 1 !important;
}

.instagram-link:hover {
  color: #d4af37 !important;
}

.interview-insta-black {
  display: inline-block !important;
  position: static !important;
  vertical-align: middle !important;
  margin-left: 8px !important;
  color: #000 !important;
  font-size: 22px !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.interview-insta-black i,
.interview-insta-black .fa-instagram {
  font-size: 22px !important;
  width: 22px !important;
  height: 22px !important;
  color: #000 !important;
}

.interview-insta-black:hover {
  color: #d4af37 !important;
}

/* ==============================
   ニュース＆イベントページ
============================== */
.news-page {
  max-width: 1200px;
  margin: 3em auto;
  padding: 0 2em;
}

.news-page h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3em;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5em;
}

.news-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.news-card a {
  text-decoration: none;
  color: #1a1a1a;
  display: block;
}

.news-card a h2 {
  color: #1a1a1a;
  transition: color 0.3s;
}

.news-card a:hover h2 {
  color: #d4af37;
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-info {
  padding: 1.2em;
}

.news-info .category {
  display: inline-block;
  background: #b38b59;
  color: white;
  font-family: 'Bodoni Moda', "Times New Roman", serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0.3em 0.9em;
  margin-bottom: 0.5em;
}

.news-info .date {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5em;
}

.news-info h2 {
  font-size: 1.2rem;
  margin: 0;
}

/* ==============================
   記事コンテンツ
============================== */
.content {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
  line-height: 1.8;
}

.content h1 { font-size: 2.5rem; margin-bottom: 10px; }
.content .meta { font-size: 1rem; color: #999; margin-bottom: 30px; }
.content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 5px;
}
.content p { font-size: 1.1rem; margin-bottom: 30px; }

/* ==============================
   関連記事
============================== */
.related-articles { margin-top: 50px; }

.related-articles h3 {
  font-size: 1.5rem;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.related-grid a {
  display: block;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.related-grid a:hover { transform: translateY(-5px); }
.related-grid img { width: 100%; display: block; }
.related-grid h4 { padding: 10px 15px; margin: 0; font-size: 1rem; color: #d4af37; }

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: #d4af37;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  margin-top: 30px;
}

.cta-button:hover { background: #b89132; }

@media screen and (max-width: 1024px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media screen and (max-width: 600px)  { .related-grid { grid-template-columns: 1fr; } }

/* ==============================
   アンバサダーページ
============================== */
.ambassadors {
  padding: 100px 20px;
  background: #fefcf8;
  text-align: center;
}

.ambassadors-title {
  font-family: 'Bodoni Moda', "Times New Roman", serif;
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 10px;
  letter-spacing: 0.15em;
}

.ambassadors-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.ambassadors-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ambassador-card {
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  width: 300px;
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ambassador-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.ambassador-card img { width: 100%; margin-bottom: 15px; }
.ambassador-name { font-size: 1.4rem; margin-bottom: 5px; color: #111; }
.ambassador-role {
  font-family: 'Bodoni Moda', "Times New Roman", serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #d4af37;
  margin-bottom: 10px;
}
.ambassador-text { font-size: 0.95rem; color: #444; line-height: 1.6; }

@media screen and (max-width: 768px) {
  .ambassadors-list { flex-direction: column; align-items: center; }
}

/* ==============================
   インタビューページ
============================== */
.interview-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.interview-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.interview-card a:hover { transform: translateY(-5px); }

.interview-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-bottom: 16px;
}

.interview-card h3 { margin: 16px 0 8px; font-size: 1.2rem; }
.interview-card p { font-size: 0.95rem; color: #555; }

.interview-detail {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
}

.hero-image img { width: 100%; margin-bottom: 40px; }
.interviewee-name { font-size: 2.4rem; margin-bottom: 8px; text-align: center; }
.interviewee-role { font-size: 1.1rem; text-align: center; margin-bottom: 40px; color: #666; }
.highlight-quote {
  font-family: 'Bodoni Moda', "Times New Roman", serif;
  font-size: 1.6rem;
  font-style: italic;
  text-align: center;
  margin: 60px 0;
}
.qa .question { font-weight: bold; font-size: 1.2rem; margin-top: 40px; margin-bottom: 12px; line-height: 1.5; }
.qa .answer { font-size: 1.05rem; line-height: 1.7; color: #333; }

.inline-image {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 20px auto;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.section-title {
  font-family: 'Bodoni Moda', "Times New Roman", serif;
  font-weight: 500;
  font-size: 1.3rem;
  margin-top: 16px;
  margin-bottom: 12px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.back-to-list { text-align: center; margin: 60px 0 40px; }

.back-to-list a {
  display: inline-block;
  padding: 12px 32px;
  font-family: 'Bodoni Moda', "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  transition: all 0.3s ease;
}

.back-to-list a:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* ==============================
   お問い合わせページ
============================== */
.contact-section {
  max-width: 700px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.contact-section h2 {
  font-family: 'Bodoni Moda', "Times New Roman", serif;
  font-size: 2rem;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.contact-email a {
  font-family: 'Bodoni Moda', "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: #d4af37;
  border-bottom: 1px solid #d4af37;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-email a:hover { color: #b89132; border-color: #b89132; }

.note { margin-top: 10px; font-size: 0.9rem; color: #666; }

body.contact-page {
  background-image: url('images/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.contact-overlay {
  background-color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 120px auto;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: center;
}