/* ==========================================================================
   松月堂 (Shogetsudo) Custom Styles
   ========================================================================== */

/* ベースフォント設定 */
.shogetsudo-body {
  font-family: 'Shippori Mincho', 'Yu Mincho', 'YuMincho', serif;
  color: #fff;
  background-color: #000;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden; /* Prevent horizontal scroll globally */
  width: 100%;
}

/* 英語用フォントクラス */
.font-en {
  font-family: 'Cormorant Garamond', serif;
}

/* 共通：View More Link (Stylish) */
.view-more-link,
.comm-link,
.artist-viewmore {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: inherit; /* 親の色を継承 */
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  padding-right: 40px;
  position: relative;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-block;
  cursor: pointer;
}

.view-more-link::after,
.comm-link::after,
.artist-viewmore::after {
  content: '';
  position: absolute;
  top: 45%;
  right: 0;
  width: 30px;
  height: 1px;
  background-color: currentColor;
  transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.view-more-link::before,
.comm-link::before,
.artist-viewmore::before {
  content: '';
  position: absolute;
  top: 45%;
  right: 0;
  width: 8px;
  height: 1px;
  background-color: currentColor;
  transform: rotate(45deg);
  transform-origin: right top;
  transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.view-more-link:hover,
.artist-viewmore:hover,
.comm-link:hover {
  opacity: 0.7;
}

/* Fix black text on hover caused by reset.css */


.comm-link:hover {
  color: #fff;
}

/* 共通：View More Link (Stylish) */
.view-more-link:hover::after,
.artist-viewmore:hover::after,
.view-more-link:hover::before,
.artist-viewmore:hover::before,
.comm-link:hover::after,
.comm-link:hover::before {
  right: -10px;
}

/* ==========================================================================
   Animations
   ========================================================================== */
/* Simple Fade In */
.anime1 {
  opacity: 0;
  filter: blur(0); /* Override potentially inherited styles */
  transform: none;
  animation: none !important; /* Prevent conflicts with common css */
  transition: opacity 2.0s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}
.anime1.is-show {
  opacity: 1;
}

/* Fade In Up with Soft Blur (Elegant) */
.anime2 {
  opacity: 0;
  transform: translate3d(0, 40px, 0); /* Use 3D for GPU */
  filter: blur(5px); /* Soft blur for elegance */
  animation: none !important;
  transition: 
    opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
.anime2.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* 英語版ロゴの文字間隔調整 */
html[lang="en"] .shogetsudo-header .logo-text {
  letter-spacing: 0.05em;
  margin-right: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */
.shogetsudo-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent !important;
  backdrop-filter: none !important; /* すりガラス効果を解除 */
  box-shadow: none !important;      /* 影を解除 */
  border-radius: 0 !important;      /* 角丸を解除 */
  height: auto !important;          /* 高さを自動に */
  box-sizing: border-box; /* Prevent padding from increasing width */
}

/* インナーコンテナでレイアウト制御 */
.shogetsudo-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 40px 60px; /* 余白はここで調整 */
  box-sizing: border-box;
}

.shogetsudo-header .logo {
  margin: 0;
  line-height: 1;
}

.shogetsudo-header .logo-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.4em;
  margin-right: -0.4em; /* letter-spacingの右余白を打ち消し */
  white-space: nowrap; /* 折り返し防止 */
}

.shogetsudo-header .logo a {
  display: block;
}

.shogetsudo-header a {
  text-decoration: none;
  color: #fff;
}

.global-nav {
  margin-left: auto; /* 万が一のための右寄せ強制 */
}

.global-nav ul {
  display: flex;
  list-style: none;
  gap: 50px;
  margin: 0;
  padding: 0;
}

/* メニューリンクのスタイルとホバーエフェクト */
.global-nav li a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  position: relative; /* 線を配置するための基準 */
  padding-bottom: 4px; /* 線との距離 */
  display: inline-block;
  text-decoration: none;
}

/* ホバー時の下線アニメーション（左から右へ） */
.global-nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
}

.global-nav li a:hover::after {
  transform: scaleX(1);
}

/* 言語切り替え部分 */
.global-nav .lang-switch {
  font-family: 'Cormorant Garamond', serif;
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.global-nav .lang-switch a {
  /* 言語切り替えリンクも同様のエフェクトを適用するか、あるいは控えめにするか */
  /* ここでは同じエフェクトを適用します */
}

/* ハンバーガーメニュー (PCでは非表示) */
.mobile-menu-trigger {
  display: none;
}

/* ==========================================================================
   HERO Section
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* 全画面表示 */
  overflow: hidden;
}

/* 背景画像 */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg .bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 背景を少し暗くするオーバーレイ (文字の可読性向上) */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* 必要に応じて調整 */
}

/* コンテンツ配置 */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  /* max-width制限を削除 */
  margin: 0;
  padding: 0;
}

/* 左下のキャッチコピー群 */
.hero-copy-block {
  position: absolute;
  bottom: 100px;
  left: 60px; /* ヘッダーのpaddingに合わせる */
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-sub-copy {
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.hero-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 5px;
}

.hero-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

.hero-lead {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

/* 右下のアクションリンク */
.hero-action {
  position: absolute;
  bottom: 100px;
  right: 60px; /* ヘッダーのpaddingに合わせる */
}

.video-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-left: 30px; /* アイコン用のスペース */
  transition: opacity 0.3s;
}

/* Playアイコン (擬似要素) */
.video-link::before {
  content: '▶'; /* 簡易的なPlayマーク。画像やSVGにするのもあり */
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

/* 下線アニメーション */
.video-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 30px; /* アイコンの右側から */
  width: calc(100% - 30px);
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
}

.video-link:hover {
  opacity: 0.7; /* フェードアニメーション有効 */
  color: #fff; /* 文字色を白のまま固定 */
}

.video-link:hover::before {
  transform: translateY(-50%) translateX(5px); /* アイコンが右に動く */
}

.video-link:hover::after {
  transform: scaleX(1); /* 下線が伸びる */
}

/* ==========================================================================
   About Section
   ========================================================================== */
.sec-about {
  width: 100%;
  background-color: #fff; /* 白背景 */
  color: #000; /* 黒文字 */
  padding: 150px 0; /* 大きめの余白 */
  position: relative;
}

.about-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; /* スマホで折り返すため */
}

/* 左側：タイトルエリア */
.about-head {
  width: 40%;
  padding-right: 50px;
  box-sizing: border-box;
  text-align: left; /* 左揃えを明示 */
}

.about-label {
  display: block;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.about-title {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.about-sub {
  font-size: 24px;
  letter-spacing: 0.05em;
}

/* 右側：本文エリア */
.about-body {
  width: 50%;
}

.about-lead {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: left; /* 左揃えを明示 */
}

.about-text {
  font-size: 16px;
  line-height: 2.2; /* ゆったりした行間 */
  letter-spacing: 0.1em;
  margin-bottom: 60px;
  text-align: left; /* 左揃えを明示 */
}

.text-emphasis {
  font-size: 1.2em; /* 少し大きく */
  font-family: 'Cormorant Garamond', serif; /* 英語フォント混ぜる */
}

/* View More リンク (共通クラスへ統合) */
.view-more-wrap {
  text-align: center; /* 左揃えから中央揃えに変更 */
}

/* ==========================================================================
   Full Visual Section
   ========================================================================== */
.sec-full-visual {
  width: 100%;
  max-width: 100%; /* Ensure it doesn't exceed viewport */
  line-height: 0; /* 画像の下隙間防止 */
  overflow: hidden; /* Important to contain scaled inner elements */
  /* アニメーション初期状態 */
  opacity: 0;
  filter: blur(20px);
  /* transform: scale(1.05) translate3d(0,0,0);  <-- Removed scale/translate from initial state to prevent overflow */
  transition: 
    opacity 2.5s cubic-bezier(0.22, 1, 0.36, 1), 
    filter 2.5s cubic-bezier(0.22, 1, 0.36, 1), 
    transform 3.0s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
  backface-visibility: hidden;
  margin: 0;
  padding: 0;
}

.sec-full-visual.is-show {
  opacity: 1;
  filter: blur(0);
  /* transform: scale(1) translate3d(0,0,0); <-- Removed transform */
}

/* Add inner wrapper for scaling effect without causing scroll */
.full-visual-inner {
  width: 100%;
  max-width: 100%;
  overflow: hidden; /* Crop the scaled image */
  margin: 0;
  padding: 0;
}

.full-visual-img {
  width: 100%;
  height: auto;
  display: block;
  /* Apply scale animation to the image instead of the section */
  transform: scale(1.05);
  transition: transform 3.0s cubic-bezier(0.22, 1, 0.36, 1);
}

.sec-full-visual.is-show .full-visual-img {
  transform: scale(1);
}

/* ==========================================================================
   How to Section (Split Layout)
   ========================================================================== */
.sec-howto {
  width: 100%;
  background-color: #fff;
  color: #000;
  position: relative;
  padding: 150px 0; /* About同様の上下余白 */
}

.howto-split {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;   /* 幅制限をなくす */
  margin: 0 auto;
  padding: 0 60px;   /* 画面端に少し余白を残す（ヘッダー合わせ） */
  box-sizing: border-box;
}

/* 左側：画像エリア */
.howto-img-area {
  width: 55%; /* 画像を少し大きくしてインパクトを出す */
  position: relative;
  line-height: 0;
  overflow: hidden;
}

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

/* 右側：コンテンツエリア */
.howto-content-area {
  width: 45%; /* テキストエリアは少し狭く */
  display: flex;
  align-items: center;
  justify-content: center; /* 上下左右中央寄せ */
  padding: 80px 50px;
  box-sizing: border-box;
}

.howto-content-inner {
  max-width: 600px; /* コンテンツ幅を制限して読みやすく */
  width: 100%;
  text-align: left;
}

.howto-label {
  display: block;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

.howto-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 40px;
}

.howto-lead {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}

.howto-text {
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}

/* ==========================================================================
   Method Section (Steps)
   ========================================================================== */
.sec-method {
  width: 100%;
  background-color: #fff;
  color: #000;
  padding: 150px 0; /* 上下余白をしっかりとる */
}

.method-inner {
  max-width: 1440px; /* About等と統一 */
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
}

.steps-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.step-item {
  width: 23%; /* 4カラム */
  text-align: center;
}

/* Step Header (Label & Num) */
.step-head {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px; /* 線との距離を少し広げる */
}

/* 下の線（画像に合わせて調整） */
.step-head::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px; /* 文字幅より少し広めに */
  height: 1px;
  background-color: #666; /* 真っ黒ではなく濃いグレーで上品に */
  z-index: 1;
}

.step-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin-right: 10px;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

/* Image */
.step-img {
  width: 100%;
  margin-bottom: 25px;
  line-height: 0;
  overflow: hidden;
}

.step-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.step-item:hover .step-img img {
  /* transform: scale(1.05);*/
}

/* Text */
.step-body {
  text-align: left; /* テキストは左揃えが画像に近い */
}

.step-title {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Zen Method Section (Grid)
   ========================================================================== */
.sec-zen-method {
  width: 100%;
  background-color: #f9f9f9; /* 枯山水の代わりの仮背景色 */
	background-image: url("../../images/haikei.jpg");
	background-size: cover;
  color: #000;
  padding: 120px 0;
  position: relative;
}

.zen-method-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
}

/* Header */
.zen-method-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  flex-wrap: wrap; /* レスポンシブ用 */
}

.zen-head-left {
  width: 40%;
  padding-right: 50px;
  box-sizing: border-box;
  text-align: left;
}

.zen-label {
  display: block;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.zen-title {
  font-size: 64px; /* Aboutと同じサイズに統一 */
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.zen-head-right {
  width: 50%;
  padding-top: 0; /* Aboutと同じく上部は揃える */
}

.zen-jp-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  text-align: left;
}

.zen-desc {
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.1em;
  text-align: left;
  margin-bottom: 0;
}

/* Grid Layout */
.zen-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px 60px; /* Use Grid gap for strict alignment */
}

.zen-card {
  width: 100%; /* Let Grid handle the width */
  box-sizing: border-box;
}

.card-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  display: inline-block; /* 文字幅に合わせて線を引く場合 */
  min-width: 60%; /* ある程度は長く */
}

.card-img {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  line-height: 0;
}

.card-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.zen-card:hover .card-img img {
  /* transform: scale(1.05);*/
}

.card-text {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: left;
}

/* ==========================================================================
   Gallery Section (Redesigned Vertical)
   ========================================================================== */
.sec-gallery {
  width: 100%;
  background-color: #fff;
  color: #000;
  padding: 150px 0;
}

.gallery-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
}

/* Header */
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 120px; /* 少し広げる */
}

.gallery-head-left {
  width: 55%;
  padding-right: 50px;
  box-sizing: border-box;
  text-align: left;
}

.gallery-label {
  display: block;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.gallery-title {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.gallery-head-right {
  width: 40%;
  padding-top: 0;
}

.gallery-jp-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  text-align: left;
}

.gallery-desc {
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.1em;
  text-align: left;
  margin-bottom: 0;
}

/* Gallery List (Vertical Stack) */
.gallery-list-vertical {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 150px; /* 余白をさらに広げる */
}

.gallery-row {
  display: flex;
  align-items: center; /* 上下中央揃え */
  justify-content: space-between;
  width: 100%;
}

/* Left: Image Area (55% width container) */
.gallery-row-img {
  width: 55%; 
  position: relative;
  line-height: 0;
  /* overflow: hidden;  <-- 画像をはみ出させるならこれは削除するか検討 */
  display: flex;        /* flexで右寄せ、左寄せ制御しやすくする */
  justify-content: flex-start; /* デフォルト左寄せ */
}

.gallery-row-img img {
  width: 70%; /* コンテナの中で70%のサイズ */
  height: auto;
  aspect-ratio: 3 / 2; /* 3:2のアスペクト比 */
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: none; /* 影削除 */
}

.gallery-row:hover .gallery-row-img img {
 /* transform: scale(1.03);*/
}

/* Case Label (画像上のラベル) */
.gallery-case-label {
  position: absolute;
  top: 0;
  left: 0; /* 画像の左上に合わせるなら調整必要かも */
  background-color: #000;
  color: #fff;
  padding: 15px 35px;
  font-size: 16px;
  letter-spacing: 0.1em;
  z-index: 10;
}

/* Right: Content Area (40% width container) */
.gallery-row-content {
  width: 40%; 
  text-align: left;
  display: flex;
  align-items: center;
  padding-left: 0;
}

.gallery-content-inner {
  width: 100%;
}

.gallery-row-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  line-height: 1.4;
  border-left: none; 
  padding-left: 0;
}

.gallery-row-text {
  font-size: 16px;
  line-height: 2.4;
  letter-spacing: 0.1em;
  color: #111;
  margin-left: 0;
}

/* Responsive for Gallery Vertical */
@media screen and (max-width: 900px) {
  .gallery-list-vertical {
    gap: 100px;
  }

  .gallery-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-row-img {
    width: 100%; 
    margin-bottom: 40px;
    height: auto;
    display: block; /* モバイルは通常ブロック */
  }
  
  .gallery-row-img img {
    width: 100%; /* モバイルは100%表示 */
    height: 300px; /* 固定高 */
    aspect-ratio: auto;
  }

  .gallery-row-content {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .gallery-row-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .gallery-row-text {
    font-size: 15px;
  }
}

/* ==========================================================================
   Community Section
   ========================================================================== */
.sec-community {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #000;
  padding: 120px 0; /* 上下余白 */
  
  /* 画像を背景として設定し、デザインに合わせて配置調整 */
  background-image: url('../../images/community-bg.jpg');
  background-repeat: no-repeat;
  background-size: contain; /* 円窓が見えるように */
  background-position: left center; /* 左寄せ */
  
  color: #fff;
}

/* 右側背景を黒で埋めるための工夫（画像のアスペクト比次第だが、基本黒背景なのでOK） */

.community-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
}

/* 3 Column Grid Layout */
.community-grid {
  display: grid;
  /* 
     Col 1: Facebook Banner (Overlapping Visual) -> 35%
     Col 2: Visual Space (Transparent) -> 15%
     Col 3: Text Content -> 50%
  */
  grid-template-columns: 35% 15% 50%;
  align-items: center;
  width: 100%;
}

/* Column 1: Facebook Banner */
.comm-col-fb {
  position: relative;
  z-index: 2; /* 視覚的背景より前に */
  padding-left: 20px; /* 少し右にずらすか調整 */
}

.fb-card-wrap {
  width: 100%;
  max-width: 500px; /* カードの最大幅制限 */
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5); /* 浮遊感 */
  transition: transform 0.3s ease;
}

.fb-card-wrap:hover {
  transform: translateY(-5px);
}

.fb-card-link {
  display: block;
}

.fb-card-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Column 2: Visual Spacer */
.comm-col-visual {
  /* ここは背景画像（円窓）が見えるエリアとして空間を確保 */
}

/* Column 3: Text Content */
.comm-col-text {
  padding-left: 60px; /* テキストの左余白 */
  text-align: left;
}
.comm-col-text a{
	color: #fff;
}

.comm-label {
  display: block;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
  color: #fff;
}

.comm-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 40px;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.comm-desc {
  font-size: 16px;
  line-height: 2.2;
  margin-bottom: 50px;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

/* ==========================================================================
   Case Study Section
   ========================================================================== */
.sec-case-study {
  width: 100%;
  background-color: #fff;
  color: #000;
  padding: 150px 0;
}

.case-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* モバイルでは折り返す */
  flex-wrap: wrap;
}

/* Left: Header Area */
.case-head-area {
  width: 30%;
  padding-right: 40px;
  box-sizing: border-box;
  /* スクロール時に追従させてもかっこいいが、今回はシンプルに上揃え */
  position: sticky;
  top: 150px; /* ヘッダーの高さ分などを考慮 */
}

.case-label {
  display: block;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

.case-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 40px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.05em;
	text-align: left;
}

/* Right: List Area */
.case-list-area {
  width: 65%;
}

.case-list-item {
  display: flex;
  align-items: center; /* 上下中央揃え（画像とテキスト） */
  justify-content: space-between;
  padding: 60px 0;
  border-bottom: 1px solid #ddd; /* 区切り線 */
}

/* 最初のアイテムの上にも線が必要ならつけるが、デザインでは区切り線のみに見える */
.case-list-item:first-child {
  border-top: 1px solid #ddd;
  margin-top: 0; /* タイトルとの位置調整 */
}

/* Image */
.case-list-img {
  width: 45%;
  line-height: 0;
  overflow: hidden;
}

.case-list-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.case-list-item:hover .case-list-img img {
 /* transform: scale(1.05);*/
}

/* Body (Text) */
.case-list-body {
  width: 50%; /* 画像との間隔を5%確保 */
  text-align: left;
}

.case-list-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}

.case-list-text {
  font-size: 15px;
  line-height: 2;
  color: #333;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Artist Gallery Slideshow Section
   ========================================================================== */
.sec-artist-gallery {
  width: 100%;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: #f9f9f9;
  min-height: 800px;
}

.artist-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Placeholder Background Image */
  background-image: url('../../images/image03.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.artist-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.artist-head-wrapper {
  margin-bottom: 60px;
  text-align: left;
  /* Align with the left edge of the black card (40% mark) */
  margin-left: 0%; 
  position: relative;
  z-index: 5;
}

.artist-label {
  display: block;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: #111;
}

.artist-title {
  font-size: 48px;
  font-weight: 400;
  margin-top: 10px;
  letter-spacing: 0.05em;
  color: #111;
}

/* Slider Container */
.artist-slider-container {
  position: relative;
  width: 100%;
}

/* bxSlider Default Override */
.bx-wrapper {
  box-shadow: none !important;
  border: none !important;
  background: none !important;
  margin-bottom: 0 !important;
}

.artist-slider {
  margin: 0;
  padding: 0;
  list-style: none;
	border: none;
	background: none;
}

/* Slide Content Layout */
.artist-slide-content {
  display: flex;
  align-items: center; /* Vertically center */
  justify-content: flex-start;
  position: relative;
  width: 100%;
  padding: 40px 0;
}

/* Left Image (Front) */
.artist-slide-img {
  width: 50%;
  position: relative;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  line-height: 0;
}

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

/* Right Dark Box (Behind Image) */
.artist-slide-info {
  width: 80%;
  background-color: #151920; /* Dark Navy */
  color: #fff;
  padding: 100px 80px 100px 200px;
  box-sizing: border-box;
  position: relative;
  z-index: 2; /* Behind the image */
  margin-left: -10%; /* Negative margin overlap */
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 550px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.artist-info-inner {
  width: 100%;
  max-width: 600px;
}
.artist-info-inner a{
  color: #fff;
}
.artist-role {
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  opacity: 0.8;
  font-family: 'Cormorant Garamond', serif;
}

.artist-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 32px;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.artist-desc {
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
  text-align: left;
  opacity: 0.9;
}

/* View More Link */
.artist-viewmore {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  padding-right: 40px;
  position: relative;
  z-index: 10;
  display: inline-block;
  float: right; /* Right aligned */
  transition: opacity 0.3s;
}

.artist-viewmore::after {
  content: '';
  position: absolute;
  top: 45%;
  right: 0;
  width: 30px;
  height: 1px;
  background-color: #fff;
  transition: right 0.3s;
}

.artist-viewmore::before {
  content: '';
  position: absolute;
  top: 45%;
  right: 0;
  width: 8px;
  height: 1px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: right top;
  transition: right 0.3s;
}

.artist-viewmore:hover {
  opacity: 0.7;
  color: #fff;
}

.artist-viewmore:hover::after,
.artist-viewmore:hover::before {
  right: -10px;
}

/* Custom Controls */
.artist-custom-controls {
  position: absolute;
  top: 50%;
  left: 50%; /* Adjusted to be near the overlap */
  transform: translate(-50%, -50%);
  width: 120px;
  height: 40px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* クリックを下のリンクに通す */
  opacity: 0; /* Hidden as per clean design usually, or adjust position */
  /* If arrows are needed visible, adjust position: */
}
/* Re-position arrows above the content if needed, 
   but the request didn't specify arrow position explicitly this time.
   Let's place them neatly above the text box title */
.artist-custom-controls {
  top: 25%;
  left: 45%; /* Match title alignment roughly */
  transform: none;
  opacity: 1;
}

.artist-ctrl-btn {
  cursor: pointer;
  width: 50px;
  height: 40px;
  position: relative;
  display: block;
  transition: opacity 0.3s;
  pointer-events: auto; /* ボタン自体はクリック可能に */
}

/* Arrows style update */
#artist-prev::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
#artist-prev::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 1px;
  background-color: #fff;
  transform: rotate(-30deg);
  transform-origin: left top;
}

#artist-next::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
#artist-next::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 1px;
  background-color: #fff;
  transform: rotate(30deg);
  transform-origin: right top;
}


/* ==========================================================================
   Online Shop Intro Section
   ========================================================================== */
.sec-shop-intro {
  width: 100%;
  background-color: #fff;
  color: #111; /* しっかり黒文字指定 */
  padding: 180px 0; /* 余白を増やしてゆったりと */
  text-align: center;
}

.shop-intro-inner {
  max-width: 1440px; /* 幅を広げてモダンに */
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start; /* 上揃えで整列 */
  justify-content: space-between;
}

.shop-head {
  text-align: left;
  width: 35%;
  padding-top: 10px; /* 右側のテキストと視覚的なバランス調整 */
}

.shop-label {
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  color: #666; /* 少しグレーにして階層を作る */
  font-family: 'Cormorant Garamond', serif;
}

.shop-title {
  font-size: 72px; /* サイズアップ */
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-family: 'Cormorant Garamond', serif;
}

.shop-desc {
  width: 55%;
  text-align: left;
}

.shop-jp-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: 0.15em;
  line-height: 1.6;
  font-family: 'Shippori Mincho', serif;
}

.shop-text {
  font-size: 16px;
  line-height: 2.4; /* 行間を広げて読みやすく */
  letter-spacing: 0.1em;
  color: #333;
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.sec-products {
  width: 100%;
  background-color: #fff;
  color: #111;
  padding-bottom: 180px;
}

.products-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
}

.product-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}

.product-item {
  width: 46%; /* 左右のバランス調整 */
  text-align: center;
  position: relative;
}

.product-img {
  width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
}

.product-img img {
  width: 100%;
  height: auto;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); /* なめらかなアニメーション */
  display: block;
}

.product-item:hover .product-img img {
  transform: scale(1.03);
}

.product-info {
  text-align: center;
  display: flex; /* 追加: フレックスコンテナにして中央揃えを確実に */
  flex-direction: column;
  align-items: center;
}

.product-rec {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
  color: #666;
  border: 1px solid #ccc;
  padding: 8px 20px;
  border-radius: 20px;
}

.product-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 35px;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.coupon-area {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 50px 0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: 0.1em;
}

.coupon-link-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111;
  padding: 20px;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  border-radius: 4px;
}

.coupon-link-btn:hover {
  background-color: #f9f9f9;
}

.coupon-main-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

/* 下線アニメーション */
.coupon-main-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #111;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.coupon-link-btn:hover .coupon-main-text::after {
  transform: scaleX(1);
  transform-origin: left;
}

.coupon-sub-text {
  font-size: 14px;
  color: #666;
  letter-spacing: 0.15em;
}

/* ==========================================================================
   Brand Story Section
   ========================================================================== */
.sec-brand-story {
  width: 100%;
  background-color: #f5f5f7; /* 上品なグレー */
  color: #111; /* 文字色指定 */
  padding: 180px 0;
}

.brand-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
}

.brand-content-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-img {
  width: 50%;
  line-height: 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05); /* ほんのり影 */
}

.brand-img img {
  width: 100%;
  height: auto;
  display: block;
}

.brand-text-area {
  width: 42%;
  padding-left: 60px;
  box-sizing: border-box;
  text-align: left;
}

.brand-label {
  display: block;
  font-size: 16px;
  margin-bottom: 30px;
  letter-spacing: 0.15em;
  color: #666;
  position: relative;
  padding-left: 50px; /* 線を引く */
}

.brand-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 35px;
  height: 1px;
  background-color: #666;
}

.brand-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 42px;
  line-height: 1.6;
  margin-bottom: 50px;
  letter-spacing: 0.1em;
}

.brand-desc {
  font-size: 16px;
  line-height: 2.4;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
  color: #333;
}

/* ==========================================================================
   News Section
   ========================================================================== */
.sec-news {
  width: 100%;
  background-color: #fff;
  color: #111; /* 文字色指定 */
  padding: 180px 0;
  text-align: center;
}

.news-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
}

.news-head {
  margin-bottom: 80px;
}

.news-label {
  font-size: 18px;
  display: block;
  margin-bottom: 20px;
  color: #666;
  font-family: 'Cormorant Garamond', serif;
}

.news-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 48px;
  letter-spacing: 0.1em;
}

.news-list {
  list-style: none;
  margin: 0 0 80px;
  padding: 0;
  text-align: left;
  border-top: 1px solid #eee; /* 薄いグレー */
}

.news-item {
  display: flex;
  align-items: baseline;
  padding: 35px 0;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s;
}

.news-item:hover {
  background-color: #fafafa;
}

.news-date {
  width: 180px;
  font-size: 16px;
  color: #888;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.05em;
}

.news-text {
  width: calc(100% - 180px);
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #111;
}

.news-more {
  text-align: center;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.sec-contact {
  width: 100%;
  position: relative;
  padding: 200px 0; /* 高さをpaddingで制御 */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  color: #fff; /* 背景が暗いので白文字 */
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s ease; /* ゆっくりズーム */
}

.sec-contact:hover .contact-bg img {
  transform: scale(1.05);
}

.contact-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4) !important; /* 文字を見やすく */
  z-index: 2 !important;
  display: block !important;
  visibility: visible !important;
}

.contact-content {
  position: relative;
  z-index: 2;
  margin-left: 15%;
  max-width: 600px;
  text-align: left; /* 明示的に左寄せ */
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  font-weight: 300;
  text-align: left; /* 明示的に左寄せ */
}

.contact-text {
  font-size: 18px;
  line-height: 2.2;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
  text-align: left; /* 明示的に左寄せ */
}

.contact-content .view-more-wrap {
  text-align: left; /* ここも重要 */
}

/* ==========================================================================
   Footer
   ========================================================================== */
.shogetsudo-footer {
  width: 100%;
  background-color: #fff;
  color: #111;
  padding: 80px 0 40px;
  border-top: 1px solid #ccc;
  box-sizing: border-box;
  margin: 0;
  text-align: left;
}

.shogetsudo-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
}

.shogetsudo-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 30px;
}

/* 1. Logo */
.sf-logo-area {
  flex-shrink: 0;
}

.sf-logo {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.sf-logo-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000;
}

/* 2. Nav */
.sf-nav-area {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.sf-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.sf-nav li {
  position: relative;
  padding: 0 25px;
}

.sf-nav li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background-color: #333;
}

.sf-nav a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-family: 'Shippori Mincho', serif;
  transition: opacity 0.3s;
}

.sf-nav a:hover {
  opacity: 0.6;
  color: #333; /* Fix reset.css/common.css overriding color to orange */
}

/* 3. SNS */
.sf-sns-area {
  margin-right: 40px;
}

.sf-socials {
  display: flex;
  gap: 30px;
  align-items: center;
}

.sf-sns-link {
  display: block; /* Changed from flex to block for background image */
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transition: opacity 0.3s;
  /* Remove text related styles */
  font-size: 0;
  color: transparent;
}

.sf-sns-link:hover {
  opacity: 0.6;
}

.icon-insta { background-image: url('../../images/icon-insta.png'); }
.icon-x { background-image: url('../../images/icon-x.png'); }
.icon-youtube { background-image: url('../../images/icon-youtube.png'); }
.icon-facebook { background-image: url('../../images/icon-facebook.png'); }
.icon-pinterest { background-image: url('../../images/icon-pinterest.png'); }

/* 4. Official Link */
.sf-link-area {
  flex-shrink: 0;
}

.sf-official-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #111;
  border: 1px solid #888; /* Slightly darker border for sharpness */
  padding: 18px 35px; /* Spacious padding */
  min-width: 260px; /* Wider button */
  box-sizing: border-box;
  transition: all 0.3s;
  background-color: #fff;
}

.sf-btn-text {
  font-size: 15px; /* Slightly larger text */
  letter-spacing: 0.1em;
  font-family: 'Shippori Mincho', serif;
}

/* Arrow Base Line */
.sf-btn-arrow {
  width: 45px; /* Longer arrow */
  height: 1px;
  background-color: #111;
  position: relative;
  transition: all 0.3s;
}

/* Arrow Head (Standard style) */
.sf-btn-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #111;
  border-right: 1px solid #111;
  transform: rotate(45deg);
  transition: border-color 0.3s;
}

/* Hover Effects */
.sf-official-link:hover {
  border-color: #000;
  background-color: #000; /* Black Background */
  color: #fff; /* White Text */
}

.sf-official-link:hover .sf-btn-arrow {
  width: 55px; /* Extend on hover */
  background-color: #fff; /* White Arrow Line */
}

.sf-official-link:hover .sf-btn-arrow::after {
  border-color: #fff; /* White Arrow Head */
}

/* Bottom */
.sf-bottom {
  text-align: center;
  border-top: 1px solid #eaeaea;
  padding-top: 20px;
  margin-top: 40px;
}

.sf-copyright {
  font-size: 13px;
  opacity: 0.6;
  letter-spacing: 0.05em;
  font-family: 'Cormorant Garamond', serif;
}

/* 撮影予定（ダミー画像）用オーバーレイ */
.img-shooting-planned {
  position: relative !important; /* 親要素として基準にするため */
  overflow: hidden; /* 角丸などがある場合のため */
}

.img-shooting-planned::after {
  content: '撮影予定';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 45, 40, 0.6); /* 赤い透過 */
  color: #fff;
  display: flex !important; /* reset.cssのdisplay: blockを上書き */
  visibility: visible !important; /* reset.cssのvisibility: hiddenを上書き */
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif; /* 視認性重視 */
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  z-index: 10;
  backdrop-filter: blur(2px); /* 少しぼかしを入れると雰囲気が出るかも */
  pointer-events: none; /* クリックを阻害しない */
}

/* ==========================================================================
   Artist Detail Page Styles
   ========================================================================== */

/* アーティストページのヘッダー: 白背景・コンパクト・静止 */
.artist-detail-page .shogetsudo-header {
  position: relative;
  background-color: #fff !important;
  backdrop-filter: none !important;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08) !important;
}

.artist-detail-page .shogetsudo-header .header-inner {
  padding: 18px 60px;
}

.artist-detail-page .shogetsudo-header .logo-text {
  color: #111;
}

.artist-detail-page .shogetsudo-header a {
  color: #111;
}

.artist-detail-page .global-nav li a::after {
  background-color: #111;
}

/* ヘッダーが relative になったのでpadding-top不要 */
.artist-detail-page .artist-detail-main {
  padding-top: 0;
}

.artist-detail-main {
  background-color: #fff;
  color: #111;
  padding-bottom: 100px;
}

/* Hero Section */
.sec-artist-detail-hero {
  padding: 150px 0 100px;
  background-color: #f9f9f9;
}

.artist-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.artist-hero-img {
  width: 45%;
  line-height: 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.artist-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.artist-hero-content {
  width: 48%;
  text-align: left;
}

.artist-hero-text .artist-label {
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: #666;
}

.artist-name-jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.artist-name-en {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.artist-lead {
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: #333;
}

/* Info Section (Profile & Voice) */
.sec-artist-detail-info {
  padding: 100px 0;
}

.artist-info-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 50px;
}

.artist-profile-block,
.artist-voice-block {
  margin-bottom: 80px;
  text-align: left;
}

.detail-sec-title {
  font-size: 32px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  display: inline-block;
  min-width: 150px;
}

.artist-profile-text,
.artist-voice-text {
  font-size: 16px;
  line-height: 2.4;
  letter-spacing: 0.05em;
  color: #333;
}

/* Works Gallery */
.sec-artist-detail-gallery {
  padding: 50px 0 100px;
  background-color: #fff;
}

.artist-gallery-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
  text-align: center;
}

.gallery-sec-title {
  font-size: 40px;
  margin-bottom: 60px;
  display: inline-block;
}

.artist-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.work-item {
  width: 100%;
}

.work-img {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.work-img:hover {
  transform: translateY(-5px);
}

.work-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1; /* Square for grid consistency */
}

/* Back Link */
.sec-artist-back {
  padding: 50px 0 100px;
  text-align: center;
}

.back-link {
  font-size: 18px;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 5px;
  transition: opacity 0.3s;
}

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

/* Responsive */
@media screen and (max-width: 900px) {
  .sec-artist-detail-hero {
    padding: 120px 0 60px;
  }

  .artist-hero-inner {
    flex-direction: column;
    padding: 0 20px;
  }

  .artist-hero-img {
    width: 100%;
    margin-bottom: 40px;
  }

  .artist-hero-content {
    width: 100%;
  }

  .artist-name-jp {
    font-size: 36px;
  }

  .artist-lead {
    font-size: 15px;
  }

  .artist-info-container {
    padding: 0 20px;
  }

  .artist-works-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 cols */
    gap: 20px;
  }
}

@media screen and (max-width: 640px) {
  .artist-works-grid {
    grid-template-columns: 1fr; /* Mobile: 1 col */
  }
  
  .artist-gallery-inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 900px) {
  /* Common Adjustments */
  .shogetsudo-body {
    -webkit-text-size-adjust: 100%;
  }

  .shogetsudo-header {
    padding: 20px;
  }

  .shogetsudo-header .header-inner {
    padding: 0; /* Reset PC padding */
    position: relative; /* Ensure relative positioning */
    display: flex; /* Force Flexbox */
    justify-content: space-between; /* Space out items */
    align-items: center; /* Vertically center */
    width: 100% !important; /* Ensure full width */
  }

  .global-nav {
    display: none;
  }
  
  /* Mobile Menu Trigger - Strong Reset & Redesign */
  .mobile-menu-trigger.menu-toggle {
    display: block !important;
    width: 32px !important;
    height: 24px !important;
    position: relative !important; /* Use relative to flow in flex */
    top: auto !important;
    right: auto !important;
    transform: none !important;
    cursor: pointer;
    z-index: 9999 !important; /* Ensure above overlay and everything else */
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 0 0 auto !important; /* Force to right */
  }
  
  .mobile-menu-trigger.menu-toggle span {
    display: block !important;
    width: 100% !important;
    height: 2px !important; /* Slightly thicker for visibility */
    background-color: #fff !important; /* Explicit white */
    position: absolute !important;
    left: 0 !important;
    border-radius: 1px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Kill cmn.css pseudo-elements */
  .mobile-menu-trigger.menu-toggle span::before,
  .mobile-menu-trigger.menu-toggle span::after {
    display: none !important;
    content: none !important;
  }
  
  .mobile-menu-trigger.menu-toggle span:nth-child(1) { top: 0 !important; }
  .mobile-menu-trigger.menu-toggle span:nth-child(2) { top: 50% !important; margin-top: -1px !important; } /* Center adj */
  .mobile-menu-trigger.menu-toggle span:nth-child(3) { bottom: 0 !important; top: auto !important; }

  /* Open State (X shape) */
  body.menu-open .mobile-menu-trigger.menu-toggle span:nth-child(1) {
    top: 50% !important;
    transform: translateY(-50%) rotate(45deg) !important;
    background-color: #fff !important; /* Force white color */
  }
  body.menu-open .mobile-menu-trigger.menu-toggle span:nth-child(2) {
    opacity: 0 !important;
  }
  body.menu-open .mobile-menu-trigger.menu-toggle span:nth-child(3) {
    bottom: 50% !important; 
    top: auto !important; 
    transform: translateY(50%) rotate(-45deg) !important;
    background-color: #fff !important; /* Force white color */
  }

  /* Menu Overlay */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    background: rgba(10, 10, 10, 0.6); /* Deep Black with slight transparecy */
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.5s;
    padding: 40px;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
  }

  .menu-overlay-inner {
    width: 100%;
    max-width: 400px; /* Limit width */
    text-align: center;
  }

  body.menu-open .menu-overlay {
    opacity: 1;
    visibility: visible;
  }
  
  /* Body Lock */
  body.menu-open {
    overflow: hidden;
  }

  /* Mobile Nav Items */
  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Flex layout to stack vertically */
    flex-direction: column;
    align-items: center;
    gap: 25px; /* Consistent gap */
  }

  .mobile-nav li {
    margin: 0; /* Reset margin, handle with gap */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    width: 100%; /* Full width for centering */
    text-align: center;
  }
  
  body.menu-open .mobile-nav li {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Stagger animation delay */
  body.menu-open .mobile-nav li:nth-child(1) { transition-delay: 0.1s; }
  body.menu-open .mobile-nav li:nth-child(2) { transition-delay: 0.15s; }
  body.menu-open .mobile-nav li:nth-child(3) { transition-delay: 0.2s; }
  body.menu-open .mobile-nav li:nth-child(4) { transition-delay: 0.25s; }
  body.menu-open .mobile-nav li:nth-child(5) { transition-delay: 0.3s; }
  body.menu-open .mobile-nav li:nth-child(6) { transition-delay: 0.35s; }
  body.menu-open .mobile-nav li:nth-child(7) { transition-delay: 0.4s; }
  body.menu-open .mobile-nav li:nth-child(8) { transition-delay: 0.45s; }
  body.menu-open .mobile-nav li:nth-child(9) { transition-delay: 0.5s; }

  .mobile-nav a {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; /* Slightly smaller for better fit */
    text-decoration: none;
    letter-spacing: 0.1em;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
  }
  
  .mobile-nav a:hover {
    opacity: 0.7;
  }

  .mobile-lang {
    margin-top: 30px !important;
    font-size: 16px;
  }
  .mobile-lang a {
    font-size: 18px;
  }

  /* HERO */
  .hero-section {
    height: 100svh; /* モバイルのアドレスバー対策 */
  }

  .hero-copy-block {
    bottom: 80px;
    left: 20px;
    right: 20px;
    text-align: center; /* モバイルは中央揃えが見やすい場合も */
  }

  .hero-main-title {
    font-size: 48px;
    margin-bottom: 10px;
  }

  .hero-brand-name {
    margin-bottom: 20px;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-action {
    display: none; /* モバイルでは非表示 */
  }

  /* About */
  .sec-about {
    padding: 100px 0;
  }
  
  .about-inner {
    flex-direction: column;
    padding: 0 20px;
  }
  
  .about-head {
    width: 100%;
    margin-bottom: 40px;
    padding-right: 0;
    text-align: left;
  }
  
  .about-title {
    font-size: 48px;
  }
  
  .about-body {
    width: 100%;
  }
  
  .about-lead {
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  
  .about-text {
    font-size: 14px;
    margin-bottom: 40px;
    line-height: 2;
  }

  /* How to */
  .sec-howto {
    padding: 100px 0;
  }

  .howto-split {
    flex-direction: column;
    padding: 0;
  }

  .howto-img-area {
    width: 100%;
    height: 300px;
  }

  .howto-content-area {
    width: 100%;
    padding: 60px 20px;
  }
  
  .howto-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .howto-lead {
    font-size: 20px;
  }

  .howto-text {
    font-size: 14px;
  }

  /* Method */
  .sec-method {
    padding: 100px 0;
  }

  .steps-list {
    flex-direction: column;
    gap: 60px;
  }

  .step-item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .step-img {
    width: 80%;
    margin: 0 auto 20px;
  }
  
  .step-body {
    text-align: center;
    padding: 0 10px;
  }

  /* Zen Method */
  .sec-zen-method {
    padding: 100px 0;
  }

  .zen-method-inner {
    padding: 0 20px;
  }

  .zen-method-head {
    flex-direction: column;
    margin-bottom: 60px;
  }

  .zen-head-left {
    width: 100%;
    margin-bottom: 30px;
    padding-right: 0;
  }
  
  .zen-title {
    font-size: 40px;
  }

  .zen-head-right {
    width: 100%;
    padding-top: 0;
  }

  .zen-jp-title {
    font-size: 22px;
    line-height: 1.5;
  }

  .zen-desc {
    font-size: 14px;
  }

  .zen-method-grid {
    grid-template-columns: 1fr; /* Stack for mobile */
    gap: 50px;
  }

  .zen-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .card-img {
    margin-bottom: 15px;
  }

  /* Gallery */
  .sec-gallery {
    padding: 100px 0;
  }
  
  .gallery-inner {
    padding: 0 20px;
  }

  .gallery-head {
    flex-direction: column;
    margin-bottom: 60px;
  }

  .gallery-head-left {
    width: 100%;
    margin-bottom: 30px;
    padding-right: 0;
  }

  .gallery-title {
    font-size: 36px;
  }

  .gallery-head-right {
    width: 100%;
  }

  .gallery-jp-title {
    font-size: 22px;
  }

  .gallery-desc {
    font-size: 14px;
  }

  .gallery-list {
    flex-direction: column;
    gap: 50px;
  }

  .gallery-item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Community */
  .sec-community {
    padding: 100px 0;
    background-position: center top;
    background-size: 150%; /* 少し拡大して配置 */
  }

  .community-inner {
    padding: 0 20px;
  }

  .community-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  
  .comm-col-fb {
    width: 100%;
    padding-left: 0;
    display: flex;
    justify-content: center;
  }

  .fb-card-wrap {
    max-width: 100%;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }

  .comm-col-visual {
    display: none;
  }

  .comm-col-text {
    width: 100%;
    padding-left: 0;
    text-align: left; 
  }
  
  .comm-title {
    font-size: 28px;
    line-height: 1.4;
  }
  
  .comm-title br {
    display: none;
  }

  /* Case Study */
  .sec-case-study {
    padding: 100px 0;
  }
  
  .case-inner {
    flex-direction: column;
    padding: 0 20px;
  }

  .case-head-area {
    width: 100%;
    position: static;
    margin-bottom: 40px;
    padding-right: 0;
  }
  
  .case-title {
    font-size: 32px;
  }
  
  .case-title br {
    display: none;
  }

  .case-list-area {
    width: 100%;
  }

  .case-list-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 0;
  }
  
  .case-list-img {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .case-list-body {
    width: 100%;
  }
  
  .case-list-title {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.5;
  }
  
  .case-list-text {
    font-size: 14px;
  }

  /* Artist Gallery */
  .sec-artist-gallery {
    padding: 80px 0;
  }
  
  .artist-inner {
    padding: 0 20px;
  }
  
  .artist-title {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 30px;
  }

  .artist-slide-content {
    flex-direction: column;
  }
  
  .artist-slide-img {
    width: 100%;
    height: 300px; /* Fixed height for mobile consistency */
    margin-bottom: 0;
    overflow: hidden;
  }
  
  .artist-slide-img img {
    width: 100%;
    height: 100% !important; /* Force fill to support object-fit */
    object-fit: cover;
  }
  
  .artist-slide-info {
    width: 90%; /* Center nicely */
    padding: 40px 25px;
    margin: -40px auto 0; /* Create overlap effect on mobile too */
    margin-left: auto; /* Reset PC styles */
    min-height: auto; /* Reset fixed height */
    position: relative;
    z-index: 5;
  }
  
  .artist-name {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .artist-desc {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .artist-custom-controls {
    display: none; /* Mobile swipe supported */
  }

  /* Shop Intro */
  .sec-shop-intro {
    padding: 100px 0;
  }
  .shop-intro-inner {
    flex-direction: column;
    padding: 0 20px;
  }
  .shop-head {
    width: 100%;
    margin-bottom: 40px;
    text-align: left;
    padding-top: 0;
  }
  .shop-title {
    font-size: 48px;
  }
  .shop-desc {
    width: 100%;
    text-align: left;
  }
  .shop-jp-title {
    font-size: 24px;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  /* Products */
  .sec-products {
    padding-bottom: 100px;
  }
  .products-inner {
    padding: 0 20px;
  }
  .product-list {
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
  }
  .product-item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .coupon-area {
    margin-top: 40px;
    width: 100%;
    padding: 30px 20px;
  }
  .coupon-text {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Brand Story */
  .sec-brand-story {
    padding: 100px 0;
  }
  .brand-inner {
    padding: 0 20px;
  }
  .brand-content-wrap {
    flex-direction: column;
  }
  .brand-img {
    width: 100%;
    margin-bottom: 40px;
  }
  .brand-text-area {
    width: 100%;
    padding-left: 0;
  }
  .brand-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .brand-label::before {
    display: none;
  }
  .brand-label {
    padding-left: 0;
  }

  /* News */
  .sec-news {
    padding: 100px 0;
  }
  .news-inner {
    padding: 0 20px;
  }
  .news-head {
    margin-bottom: 40px;
    text-align: left;
  }
  .news-title {
    font-size: 36px;
  }
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 0;
  }
  .news-date {
    margin-bottom: 10px;
    width: auto;
  }
  .news-text {
    width: 100%;
    font-size: 14px;
  }
  .news-more {
    text-align: left; /* スマホでも左寄せの方が流れが良い場合も */
    margin-top: 20px;
  }

  /* Contact */
  .sec-contact {
    height: auto;
    padding: 100px 0;
  }
  .contact-content {
    margin-left: 0;
    padding: 0 20px;
    text-align: left;
    width: 100%;
  }
  .contact-title {
    font-size: 42px;
  }
  .contact-text {
    font-size: 14px;
    text-align: left;
  }
  .contact-content .view-more-wrap {
    text-align: left;
    display: block;
  }

  /* Footer (Responsive) */
  .shogetsudo-footer {
    padding: 60px 0 30px;
  }
  .shogetsudo-footer-inner {
    padding: 0 20px;
  }
  .shogetsudo-footer-content {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
  }
  
  .sf-logo-area {
    width: 100%;
    text-align: center;
  }
  
  .sf-nav-area {
    width: 100%;
  }
  .sf-nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 0;
  }
  .sf-nav li {
    padding: 0 15px;
  }
  .sf-nav li:not(:last-child)::after {
    display: none;
  }
  
  .sf-sns-area {
    margin-right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .sf-link-area {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .sf-official-link {
    width: 100%;
    max-width: 320px;
  }
}