/* ------------------------------------------------------
 * ヘッダーの設定
 * ------------------------------------------------------ */
 /* ヘッダーを固定 */
 @media (min-width: 960px) {
  .l-header {
    position: fixed!important;
    background: transparent;
  }
  .p-breadcrumb {
    margin-top: calc(var(--logo_size_pc) + 32px);
  }
}
/* 下層ページのヘッダー幅をトップに合わせる */
.l-header .l-container {
  max-width: 100%!important;
}
/* ヘッダーメニューを非表示 */
nav#gnav {
  display: none;
}
/* ------------------------------------------------------
 * PCでハンバーガーボタンを表示させる設定 
 * ------------------------------------------------------ */
.l-header__menuBtn.sp_ {
  display: block!important; /* ハンバーガーボタンを表示 */
}
.-series .l-header__inner {
  align-items: center;  /* ハンバーガーボタンの上下位置調整 */
}
.p-spMenu {
  display: block; /* 開閉メニューを有効 */
}
/* ------------------------------------------------------
 * 開閉メニューのフルスクリーン設定
 * ------------------------------------------------------ */
.p-spMenu__inner {
	--color_menu_text: #000000; /* メニューテキストの色 */
	--color_menu_bg: rgba(255 255 255 / 85%); /* フルスクリーンメニューの背景色 */
  width: 100vw;
}
.p-spMenu__overlay {
  background: transparent;
}
.-right .p-spMenu__inner {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 0;
  transition: opacity .45s;
}
[data-spmenu=opened] .p-spMenu__inner {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.p-spMenu__inner::before {
  background: var(--color_menu_bg);
  opacity: 1;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
/* ------------------------------------------------------
 * フルスクリーンメニュー内の設定
 * ------------------------------------------------------ */
.p-spMenu__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;  /* PCのフォントサイズ */
  font-weight: 700;
  color: var(--color_menu_text);
}
@media (max-width: 599px) {
  .p-spMenu__body {
    font-size: 5vw; /* スマホのフォントサイズ */
  }
}
/* 開閉メニュー内のタイトルを非表示 */
.c-widget__title.-spmenu {
  display: none;  
}
/* メニューリンクの設定 */
.c-spnav a {
  border-bottom: none;
}
.c-gnav .sub-menu a:before, .c-listMenu a:before {
  content: none;
}
.p-spMenu__inner a {
  padding: 1em 0;
  text-align: center;
  transition: transform .5s;
}
.p-spMenu__inner a:hover {
  padding-left: inherit;
  padding-right: inherit;
  background-color: inherit;
  transform: scale(1.1)
}
/* 閉じるボタンの設定 */
.c-iconBtn {
  color: var(--color_menu_text);
}
@media (min-width: 960px) {
  .-right .p-spMenu__closeBtn {
    right: var(--swl-pad_container,0);
    height: calc(var(--logo_size_pc) + 32px);
  }
}


/* ==========================================================
   胎動する刺繍｜メニューのフォントとレイアウト調整
   ========================================================== */

/* メニュー項目全体：縦並びと余白の設定 */
.menu-item a {
    display: flex !important;
    flex-direction: column !important; /* 日本語と英語を縦に積む */
    align-items: center !important;    /* 左右中央揃え */
    line-height: 1.2 !important;       /* 行間 */
    padding: 10px 15px !important;     /* クリック範囲（余白） */
}

/* 日本語タイトル（メインのラベル） */
.menu-item a, 
.menu-item a .ttl {
    font-size: 16px !important;        /* 文字の大きさ：ここを調整 */
    font-weight: 500 !important;       /* 文字の太さ：400-700で変更可 */
    letter-spacing: 0.1em;             /* 文字間隔 */
}

/* 英語サブタイトル（説明文） */
.menu-item a span,
.menu-item a .desc {
    display: block !important;
    font-size: 10px !important;        /* 英語の大きさ：ここを調整 */
    opacity: 0.6 !important;           /* 薄さ：0.1〜1.0で変更可 */
    margin-top: 4px !important;        /* 日本語との距離：ここを調整 */
    font-family: serif !important;     /* フォント種類 */
    letter-spacing: 0.05em;            /* 文字間隔 */
}



/* 固定ページ「服を奏でる」のタイトルエリアを完全に抹消する */
.page-id-133 .p-article-head {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    visibility: hidden !important;
    overflow: hidden !important;
}

/* タイトル見出し自体も消去 */
.page-id-133 .p-entry-title {
    display: none !important;
}