@charset "utf-8";

html {
  scroll-behavior: smooth;
}

/* --- 共通設定 --- */
body {
    margin: 0;
    /* background-color: #f0f0f0; */
    
    /* 1. フォントをInterに固定 */
    font-family: 'Inter', sans-serif;
    
    /* 2. 全体の基本の太さをLight(300)にする */
    font-weight: 300;
    font-size: 16px;
    
    /* 3. テキストのレンダリングを綺麗にする（重要！） */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    color: #333;
    /* line-height: 1.1; */
    
}

h1,h2,p{
    margin: 0;
    font-weight: 300;
    font-size: 16px;
}



/* リンクタグ <a> はブラウザによって太く見えることがあるのでリセット */
a {
    text-decoration: none;
    color: #333;
    font-weight: inherit; 
}



/* --- 1. ロゴ（左上） --- */
.sws-fixed-logo {
    position: fixed;
    top: 30px;   /* 少し余裕を持たせて配置 */
    left: 30px;
    z-index: 1000;
}
.sws-fixed-logo img {
    width: 150px; /* 画像に合わせサイズ調整 */
}

/* --- 2. メニュー（左下） --- */

.sws-menu-title {
    margin-bottom: 16px !important;
    font-size: 18px;
}

.sws-fixed-menu {
    position: fixed;
    bottom: 30px; /* 画面下から配置 */
    left: 30px;
    z-index: 1000;
    text-align: left;
}

/* メニュー内のリンクを縦に並べるスタイル */
.sws-fixed-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sws-fixed-menu li {
    margin-bottom: 10px;
}

.sws-fixed-menu a {
    text-decoration: none;
    /* letter-spacing: 0.05em; */
    text-transform: uppercase;
}

/* --- アーティスト（サブメニュー）のスタイル --- */
.sws-sub-menu {
    /* ここが重要！ */
    display: block;    /* ブロック要素として明示 */
    margin-top: 10px !important;  /* ARTISTという文字との隙間を強制的に空ける */
    
    margin-left: 0;    
    padding: 0;        
    list-style: none;  
}

.sws-sub-menu li {
    margin-bottom: 3px; /* 名前同士の間隔を狭く */
}

.sws-sub-menu a {
    font-size: 14px;    /* アーティスト名はかなり小さく */       /* 少し色を薄くすると綺麗です */
    /* letter-spacing: 0.1em; */
}

/* ホバーした時に少し色を濃くする演出 */
.sws-sub-menu a:hover {
    color: #000;
}

/* --- ハンバーガーボタンのデザイン --- */
.sws-menu-trigger {
    display: none; /* デスクトップでは隠す */
}

/* --- 3. QRコード（右中央） --- */
/* 右中央のQR設定 */
.sws-fixed-qr {
    position: fixed;
    top: 50%;
    /* 右端から「メインコンテンツの半分 + 余白」の位置に配置 */
    right: 0;
    /* メインコンテンツ（540px）の外側、右側のエリア幅を計算 */
    width: calc((100% - 540px) / 2); 
    
    transform: translateY(-50%);
    z-index: 1000;
    
    /* これでエリア内の左右中央に寄る */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sws-fixed-qr img {
    width: 120px; /* QRのサイズはお好みで */
    height: auto;
}

.sws-fixed-qr span {
    margin-top: 8px;
    /* letter-spacing: 0.1em; */
    font-size: 14px;
}

/* --- 4. 中央の白いコンテンツエリア --- */
.sws-wrapper {
    display: flex;
    justify-content: center;
}

.sws-main-content {
    width: 100%;
    max-width: 540px; /* 画像のイメージに近いスリムな幅 */
    background-color: #fff;
    min-height: 100vh;
}

/* 動画のスタイル（既存を維持） */
.sws-fv-video {
    width: 100%;
    height: 100svh; 
    overflow: hidden;
    position: relative;
    /* background-color: #000; */
}
.sws-fv-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sws-main-content {
    width: 100%;
    max-width: 540px; /* スマホ幅を維持 */
    background-color: #fff; /* コンテンツは白背景 */
    min-height: 100vh;
    padding: 0; /* FVを上端に密着させるために一度 0 に */
    box-sizing: border-box;
}

/* テキストエリアには個別に余白をつける */
/* .sws-main-content h1, .sws-main-content p {
    padding: 0 40px;
} */


.sws-nd-contents {
    /* max-width: 485px; */
    width: 100%;
    margin: 0 auto;
    
}

.sws-nd-contents-2 {
    /* max-width: 485px; */
    width: 100%;
    margin: 0 auto;
    
}




/* スクロール用の高さを削除し、普通のセクションにする */
.horizontal-scroll-section {
    height: auto; 
    position: relative;
    background-color: #fff;
    /* padding: 100px 0; 上下の余白 */
}

/* stickyを解除 */
.sticky-sws-wrapper {
    position: relative; /* stickyから変更 */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 各要素の幅を406pxに統一して、Gibsonのような縦のラインを作ります */
/* .sws-nd-contents-tex, .works-title, .sws-scroll-inner-frame {
    width: 406px;
    margin-left: auto;
    margin-right: auto;
} */

.sws-con h1{
    font-size: 20px;
}

.sws-con p{
    font-size: 14px;
    line-height: 1.8;
    padding-top: 10px;
}

.sws-con-tex{
    padding-top: 30px;
    width: 85%;
    margin: 0 auto;
}

.sws-con-img{
    text-align: center;
}

.sws-nd-contents-bg{
    background-color: #f0f0f0;
}

.sws-pro-tit{
    font-size: 20px;
}

.sws-pro-img{
    padding-top: 20px;
}

.sws-pro-ari-wra{
    width: 85%;
    margin: 0 auto;
}

.sws-pro-ari-tex{
    /* padding-top: 20px; */
    font-size: 14px;
}

.sws-pro-ari-tex p{
    font-size: 14px;
}

.sws-pro-img img{
    width: 100%;
}


.sws-pro-tit-wra{
    padding-top: 50px;
    max-width: 485px;
    width: 85%;
    margin: 0 auto;
}

.sws-pro-ari-nam-top{
    padding-top: 30px;
}

.sws-pro-ari-nam{
    padding-top: 50px;
}

.sws-wor-tit{
    padding-top: 30px;
}

/* .works-title {
    margin-bottom: 15px;
} */

.sws-scroll-inner-frame {
    overflow: hidden;
    position: relative;
}

/* 画像サイズ */
.sws-work-item {
    flex-shrink: 0;
    width: 406px;
    height: 406px;
    aspect-ratio: 1 / 1;
}


/* 画像を横に並べる */
.sws-scroll-content {
    display: flex;
    gap: 20px;
    padding: 0; /* JSで計算しやすくするため、一旦 0 に（必要なら margin で調整） */
    width: max-content; 
    will-change: transform;
}

.sws-wor{
    background-color: #f0f0f0;
    width: 100%;
    margin-top: 50px;
    padding: 20px 0;
}

.sws-wor-2{
    /* max-width: 485px; */
    width: 85%;
    margin: 0 auto;
}

.sws-work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* バーを操作しやすくするために cursor を設定 */
.sws-progress-container {
    width: 200px;
    height: 2px;
    background-color: #ccc;
    margin: 40px auto;
    position: relative;
    cursor: pointer; /* クリックできることを示す */
}

.sws-progress-bar {
    position: absolute;
    top: -4px; 
    left: 0;
    width: 40px;
    height: 10px;
    background-color: #000;
    cursor: grab; /* 掴めることを示す */
    transition: transform 0.1s ease-out; /* 動きを滑らかに */
}

.sws-progress-bar:active {
    cursor: grabbing;
}






/*  */
/* 全体の幅制限 */
.custom-slider-container {
    /* max-width: 485px; */
    margin: 0 auto;
    padding-top: 80px;
}

.sws-con, .sws-wor-tit {
    width: 100%;
    /* margin-bottom: 20px; */
}

/* 画像を表示する窓 */
.sws-scroll-inner-frame {
    width: 100%;
    overflow: hidden; /* はみ出しを隠す */
    position: relative;
}

.sws-scroll-content {
    display: flex;
    gap: 15px;
    width: max-content;
    will-change: transform;
    cursor: grab; /* 掴めるカーソル */
    user-select: none; /* テキスト選択を防ぐ */
    padding-top: 20px;
}

.sws-scroll-content:active {
    cursor: grabbing; /* 掴んでいる時のカーソル */
}

/* ★ 2枚目をチラ見せする設定 */
.sws-work-item {
    flex-shrink: 0;
    /* 窓(485px)の約85%に設定。残りの15%で次の画像が見える */
    width: 264px; 
    height: 324px;
    aspect-ratio: 1 / 1;
}

.sws-work-item img {
    pointer-events: none; /* 画像自体のドラッグ（ブラウザ標準機能）を無効化 */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* プログレスバーのデザイン */
.sws-progress-container {
    /* width: 100%; */
    width: 300px;
    height: 1px;
    background-color: #ccc;
    margin-top: 40px;
    position: relative;
    cursor: pointer;
}

.sws-progress-bar {
    position: absolute;
    top: -2px; /* 線の中心に配置 */
    left: 0;
    width: 60px; /* バーの長さ */
    height: 5px;
    background-color: #000;
}

/* テキストコンテナのスタイル */
.sws-ari-tex-container {
    padding-top: 20px;
    text-align: center; /* ボタンを中央に寄せる場合 */
}

.sws-pro-ari-tex {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    
    /* 2行で制限して「...」を出す設定 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; 
    overflow: hidden;
    transition: all 0.3s ease;
}

/* 全表示用のクラス（JSで付け外しする） */
.sws-pro-ari-tex.is-open {
    display: block; /* 制限を解除 */
    -webkit-line-clamp: none;
    overflow: visible;
}

/* VIEW MORE ボタンのスタイル */
.sws-view-more-btn {
    display: inline-block;
    /* margin-top: 15px; */
    background: none;
    border: none;
    color: #888;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-top: 10px;
}

.sws-view-more-btn:hover {
    color: #888;
}

/* スライダーの表示窓 */
.sws-scroll-inner-frame {
    width: 100%;
    overflow: hidden; 
    position: relative;
    touch-action: pan-y; /* 縦スクロールを邪魔せず横ドラッグを許可 */
}

/* 中身の横並び */
.sws-scroll-content {
    display: flex;
    gap: 15px;
    width: max-content;
    will-change: transform;
    cursor: grab;
}

/* プログレスバーのベース */
.sws-progress-container {
    width: 100%; /* もしくは 300px など任意の幅 */
    max-width: 300px;
    height: 2px;
    background-color: #ccc;
    margin: 30px auto;
    position: relative;
}

/* 動くバー */
.sws-progress-bar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #000;
}

/* 外側のグレーの線 */
.sws-progress-container {
    width: 100%;
    max-width: 300px; /* 任意の長さ */
    height: 1px;      /* 線の太さ */
    background-color: #ccc;
    margin: 40px auto;
    position: relative;
    cursor: pointer;
}

/* 内側の黒い動くバー（ツマミ） */
.sws-progress-bar {
    position: absolute;
    /* ↓ ここが重要：垂直中央に固定 */
    top: 50%;
    left: 0;
    width: 60px;
    height: 4px; /* グレーの線より少し太くすると掴みやすい */
    background-color: #000;
    /* ↓ 移動はJSで行うため、中央寄せのtransformをベースにする */
    transform: translateY(-50%); 
    cursor: grab;
    transition: none; /* ドラッグ中の遅延をなくす */
}

.sws-progress-bar:active {
    cursor: grabbing;
}

/* --- デフォルト（PC）では非表示 --- */
.sws-mobile-logo {
    display: none;
}

#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #f0f0f0; /* ローディング画面の背景色 */
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrapper {
  position: relative;
  width: 150px;
  aspect-ratio: 1 / 1;
  /* 透過アニメーションの設定 */
  transition: opacity 0.6s ease, transform 0.6s ease; 
}

/* JavaScriptでこのクラスがついたら透過して消える */
.is-fadeout {
  opacity: 0;
  transform: scale(1.05); /* ほんの少し大きくしながら消すとオシャレです */
}

/* ローディング画面自体の消え方（背景） */
#loading.hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
  transition-delay: 0.3s; ロゴが消え始めてから背景を消す
}

/* 下地（通常のグレー/白）のロゴ */
.logo-base {
  display: block;
  width: 100%;
  height: auto;
}

/* 重なる：黒く塗りつぶすためのロゴのコンテナ */
.logo-black-fill {
  position: absolute;
  bottom: 0; /* 下から上に伸ばすためにbottomに固定 */
  left: 0;
  width: 100%;
  height: 0%; /* 最初は高さゼロ（見えない） */
  overflow: hidden; /* 親からはみ出た部分を隠す */
  
  /* 高さの変化を滑らかにする（アニメーション速度） */
  transition: height 2s ease-in-out; 
}

/* 真っ黒にするロゴ本体 */
.logo-black {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px; /* .logo-wrapperと同じ幅にする */
  height: auto;
  
  /* --- 魔法の指定：画像を真っ黒にする --- */
  /* filter: brightness(0); 明るさを0にして黒一色に */
}

/* 読み込み完了後に画面全体を消す設定 */
#loading.hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}

#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  
  /* --- ★重要★ 背景とロゴを「ひとまとめ」に透過させる設定 --- */
  /* transitionのイージングを cubic-bezier にすると、より実サイトに近い高級感が出ます */
  transition: 
    opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), 
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.9s;
}

/* ロゴのサイズと重なりの設定 */
.logo-wrapper {
  position: relative;
  width: 150px; /* サイトに合わせて調整 */
  aspect-ratio: 1 / 1;
}

.logo-base {
  display: block;
  width: 100%;
  height: auto;
}

.logo-black-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%; /* 初期状態 */
  overflow: hidden;
  transition: height 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-black {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px; 
  height: auto;
}

/* --- ★重要★ フェードアウト時の動き --- */
/* 背景とロゴを同時に、少し縮小しながら（奥へ消えるように）透過させる */
#loading.is-faded {
  opacity: 0;
  /* transform: scale(0.95); 実サイトに近い「奥へスッと消える」動き */
  visibility: hidden;
  /* ★追加：消える瞬間にブラーをかける */
  filter: blur(1px);
}

.js-split {
  /* inline-block ではなく、元の block の性質を維持させる */
  display: block; 
  /* もし元々 inline だったものの場合は inline-block のまま、
     width: fit-content; を追加すると安定します */
  width: fit-content; 

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  background-image: linear-gradient(to right, #000 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: 100% 0;

  transition: background-position 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* 元のCSSで中央寄せ(margin: auto)をしていた場合、これも追加 */
.sws-pro-tit.js-split {
  /* margin-left: auto;
  margin-right: auto; */
}

.js-split.is-active {
  background-position: 0 0 !important;
}

.js-blur-in {
  /* --- 初期状態 --- */
  opacity: 0;
  /* transform: translateY(20px); Goldwinより少し移動量を少なくすると上品 */
  
  /* ブラーを追加（最初はボヤけている） */
  filter: blur(10px); 

  /* --- 動きの滑らかさ --- */
  /* filter も transition の対象に追加する */
  transition: 
    opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.6s cubic-bezier(0.33, 1, 0.68, 1),
    filter 0.4s ease-out; /* ブラーは少し早めに解けるようにすると綺麗 */

  /* パフォーマンス向上 */
  will-change: opacity, transform, filter;
}

/* --- スクロールして画面に入った時（アクティブ） --- */
.js-blur-in.is-active {
  opacity: 1;
  transform: translateY(0);
  
  /* ブラーをなくす（ピントが合う） */
  filter: blur(0);
}


.sws-pro-ari-tex {
    /* --- 最初から2行だけ見せておく設定 --- */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* ここで見せたい行数を指定 */
    overflow: hidden;
    
    /* --- アニメーションの準備 --- */
    transition: 
        filter 0.3s ease-out, 
        opacity 0.3s ease-out,
        max-height 0.3s cubic-bezier(0.33, 1, 0.68, 1);
    
    max-height: 3em; /* 2行分のおおよその高さ（フォントサイズに合わせて調整） */
    filter: blur(0);
    opacity: 1;
}

/* --- ボタンを押した後の状態 --- */
.sws-pro-ari-tex.is-open {
    -webkit-line-clamp: unset; /* 行数制限を解除 */
    max-height: 1000px;        /* 全文が入る十分な高さ */
    
    /* 出現時に一瞬ブラーをかけてからピントを合わせる演出 */
    animation: blur-in-custom 0.8s forwards;
}

/* じわっと出てくるアニメーション */
@keyframes blur-in-custom {
    0% {
        filter: blur(5px);
        opacity: 0.1;
    }
    100% {
        filter: blur(0);
        opacity: 1;
    }
}

/* GOODSセクション */

/* タイトル */
.goods-container{
    width: 85%;
    margin: 0 auto;
    padding-top: 50px;
}
.title {
    font-size: 18px;
    /* font-weight: 400; */
    /* letter-spacing: 0.1em; */
    margin-bottom: 25px;
    color: #333;
    margin-top: 0;
}

/* 画像コンテナ */
.image-container {
    width: 100%;
    /* margin-bottom: 20px; */
}

/* 修正：1枚のイメージプレースホルダー */
.image-placeholder {
    width: 100%;
    /* aspect-ratio: 16 / 10; 画像の縦横比（実際の画像に合わせて調整） */
    /* background-color: #e0e0e0; グレーのプレースホルダー色 */
    /* border-radius: 0; 画像のデザインに合わせ、角は丸めない */
}

.image-placeholder img {
    width: 100%;
    /* aspect-ratio: 16 / 10; 画像の縦横比（実際の画像に合わせて調整） */
    /* background-color: #e0e0e0; グレーのプレースホルダー色 */
    /* border-radius: 0; 画像のデザインに合わせ、角は丸めない */
}

/* 商品名 */
.product-name {
    font-size: 14px;
    /* letter-spacing: 0.05em; */
    /* margin-bottom: 40px; */
    color: #333;
    line-height: 1.6;
    padding-top: 10px;
}

/* オンラインストアボタン */
.online-store-btn {
    display: block;
    width: 100%;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    text-decoration: none;
    border-radius: 50px; /* カプセル型 */
    font-size: 14px;
    /* font-weight: bold; */
    /* letter-spacing: 0.1em; */
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.online-store-btn:hover {
    background-color: #333; /* ホバー時に少し明るく */
}

/* GOODSセクション */

/* CONTACTセクション全体のコンテナ */
.contact-container {
    width: 85%;
    margin: 0 auto;
    padding-top: 50px;
}

.section-title {
    /* font-size: 24px; */
    /* font-weight: 300; */
    /* letter-spacing: 0.1em; */
    margin-bottom: 20px;
}

.description {
    font-size: 14px;
    line-height: 1.8;
    /* margin-bottom: 30px; */
    color: #333;
}

/* ボタンのグリッドレイアウト */
.artist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2列に分割 */
    gap: 12px 15px; /* 上下左右の隙間 */
    padding-top: 20px;
}

/* ボタンのスタイル */
.artist-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    height: 50px;
    border-radius: 25px; /* カプセル型 */
    font-size: 14px;
    /* letter-spacing: 0.15em; */
    transition: opacity 0.3s ease;
}

/* 最後のボタン（REN）が奇数の場合に左に寄せる、または全幅にしたい場合の調整 */
/* 今回は画像通り左側に配置される設定です */

.artist-btn:hover {
    opacity: 0.7;
}


.main-footer {
    width: 85%;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 80px;
}

.copyright {
    font-size: 12px; /* 少し小さめに設定 */
    /* font-weight: 300; */
    /* letter-spacing: 0.05em; */
    color: #333;
    margin: 0;
}


.noise-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* 背景に配置 */
  /* background-color: #f0f0f0; サイトのベースカラー */
  background-color: #fff;
}

.noise-bg::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  /* SVGフィルターを適用 */
  filter: url(#noiseFilter);
  opacity: 0.4; /* ノイズの強さを調整（0.1〜0.2がおすすめ） */
  pointer-events: none;
  
  /* アニメーションの適用 */
  animation: noise-animation 0.2s steps(2) infinite;
}

/* ノイズを微妙に動かしてチラつきを表現 */
@keyframes noise-animation {
  0% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -5%); }
  20% { transform: translate(-10%, 5%); }
  30% { transform: translate(5%, -10%); }
  40% { transform: translate(-5%, 15%); }
  50% { transform: translate(-10%, 5%); }
  60% { transform: translate(15%, 0); }
  70% { transform: translate(0, 10%); }
  80% { transform: translate(-15%, 0); }
  90% { transform: translate(10%, 5%); }
  100% { transform: translate(5%, 0); }
}

/* モバイル対応：中央寄せにしたい場合は text-align: center; に変更してください */

.noise-bg-loading {
  /* 前回の設定に追加 */
  will-change: transform;
  transform: translateZ(0); /* GPUを強制駆動 */
  backface-visibility: hidden;
  perspective: 1000;
}




@media screen and (max-width: 768px) {
    /* ボタンの配置（画面下中央） */
    .sws-menu-trigger {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
        position: fixed;
        bottom: 35px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); /* Safari・iOS用 */
        border-radius: 50%; /* 円形 */
        z-index: 2000;
        cursor: pointer;
    }

    .sws-menu-trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
        position: absolute;
        left: 15px;
        width: 20px;
        height: 1px;
        background-color: #f0f0f0;
    }

    .sws-menu-trigger span:nth-of-type(1) { top: 18px; }
    .sws-menu-trigger span:nth-of-type(2) { top: 24px; }
    .sws-menu-trigger span:nth-of-type(3) { top: 30px; }

    /* ボタンがactive（クリック後）の三本線の動き */
    .sws-menu-trigger.active span:nth-of-type(1) {
        transform: translateY(6px) rotate(-45deg);
    }
    .sws-menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .sws-menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-6px) rotate(45deg);
    }

    .sws-fixed-menu ul {
        padding-top: 0;
    }

    .sws-fixed-menu li {
        /* margin-bottom: 20px; */
    }

    /* アーティストリストの微調整 */
    .sws-sub-menu {
        display: block;
        flex-wrap: wrap;
        /* justify-content: center; */
        gap: 10px;
        /* max-width: 300px; */
        margin: 8px auto 0 !important;
    }



/* 中身のテキストコンテナ */
.sws-menu-scroll-sws-wrapper {
    width: 100vw; /* 常に画面幅分を確保して、背景の広がりで文字が動かないようにする */
    padding: 100px 40px;
    box-sizing: border-box;
    opacity: 0; /* 最初は透明 */
    transform: translateY(10px); /* 少し下にずらしておく */
    
    /* テキストのフェードイン設定 */
    /* 背景が広がる(0.5s)のを待つため、0.4s 程度遅らせて開始 */
    transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
}

/* 全画面メニュー（背景・外枠） */
.sws-fixed-menu {
    position: fixed;
    /* 元の位置指定を維持 */
    top: auto;
    right: 40px;
    bottom: 20px;
    left: 40px;
    /* width: calc(100% - 80px); */
    
    /* 高さは最初から最終的な数値（510px）に固定しておく */
    height: 510px; 
    
    /* 背景や角丸の設定 */
    /* background: rgba(0, 0, 0, 0.9); */
    background-color: rgba(255, 255, 255, 0.5); /* 50%透過の白 */
    /* 2. 背景をぼかす（数値が大きいほど強くぼける） */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); /* Safari・iOS用 */
    border-radius: 8px;
    overflow: hidden;
    z-index: 200;

    /* アニメーションの設定 */
    /* opacity(不透明度)とtransformを同時に変化させる */
    transition: transform .3s cubic-bezier(.77, 0, .175, 1), opacity .3s, visibility .3s;
    
    /* --- ここが重要 --- */
    transform: scaleY(0);      /* 初期状態：垂直方向に0倍（潰れた状態） */
    transform-origin: center;  /* 基準点を中央に（上下同時に開閉する） */
    /* ------------------ */

    opacity: 0;
    visibility: hidden;
    padding: 20px 30px 0;
}

/* メニューが開いたとき */
.sws-fixed-menu.active {
    opacity: 1;
    visibility: visible;
    /* 垂直方向を1倍（元のサイズ）に戻す */
    transform: scaleY(1);
}

/* 中身のラッパー（文字が潰れないように制御） */
.sws-menu-scroll-wrapper {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    
    /* 背景が伸縮している間、文字が一緒に潰れると不格好なので、
       開閉時は文字をフワッと出す/消す設定にする */
    transition: opacity .3s ease-in-out;
    opacity: 0;
}

/* メニューが開いたときの中身 */
.sws-fixed-menu.active .sws-menu-scroll-wrapper {
    opacity: 1;
    transition-delay: .2s; /* 背景が少し開いてから文字を表示 */
}

/* メニューが開いたときの中身
.sws-fixed-menu.active .sws-menu-scroll-sws-wrapper {
    opacity: 1;
    transform: scale(1);
} */

.sws-fixed-logo img {
    width: 80px;
    /* margin: 0 auto;
    text-align: center; */
}

.sws-fixed-logo {
    position: static;
    text-align: center;
    padding-bottom: 10px;
    /* top: 30px;
    left: 50px; */
    /* z-index: 1000; */
}

.sws-fixed-qr {
    display: none;
}

.sws-menu-title {
    margin-bottom: 13px !important;
    font-size: 18px;
}

/* --- スマホ表示（768px以下）の時だけ表示 --- */
    .sws-mobile-logo {
        display: block; /* 表示する */
        position: fixed; /* 画面に対して固定（スクロールしても付いてくる） */
        top: 20px;       /* 上からの位置 */
        left: 20px;      /* 左からの位置 */
        /* left: 50%;
        transform: translateX(-50%); */
        z-index: 1;   他の要素より上に配置
    }

    .sws-mobile-logo img {
        width: 45px;    /* ロゴのサイズ（適宜調整してください） */
        height: auto;
        display: block;
    }


}