/*
 Theme Name: HEADSET×JADE Child
 Template: storefront
 Text Domain: my-storefront-child
 Version: 1.0.0
*/

/* ===============================
   基本レイアウト
================================= */

/* 全体横幅調整（Storefront の余白除去） */
.col-full {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
}

body,
button,
input,
select,
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

h1, h2, h3, h4, h5, h6,
.site-title,
.jade-header__nav,
.jade-handheld-navigation {
  font-family: "Noto Sans JP", sans-serif;
}

.jade-header {
    min-height: 70px!important;
}

/* PC / モバイル切替（ブレークポイント1024px） */
@media (max-width: 1024px) {
  .headset-jade-pc { display: none; }
  .jade-header__search { display: none; }
  .header-contact { display: none !important; }
}

@media (min-width: 1025px) {
  .headset-jade-mobile { display: none; }

  .col-full {
    max-width: 100%;
    margin: 0 !important;
  }
}

@media (min-width: 768px) {
  .col-full {
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===============================
   タブレット・スマホのアコーディオンメニュー（ヘッダー）
================================= */

/* デフォルト：スマホメニュー隠す */
.jade-handheld-navigation {
  display: none;
}

/* スマホ・タブレット（1024px以下）*/
@media (max-width: 1024px) {

  /* スマホメニューを表示（ベース） */
  .jade-handheld-navigation {
    display: block;
    background: #213954;
    padding: 0.75rem 1rem;
  }

  /* PCメニューを非表示にする */
  .jade-header__nav,
  .jade-header__search,
  .header-contact {
    display: none;
  }

  /* ハンバーガーメニュー */
  .jade-menu-toggle {
    display: flex;
    width: 44px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 999;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .jade-menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    transition: .3s;
  }

  /* 開閉制御用（最初は閉じ） */
  .jade-handheld-navigation {
    display: none;
    background: #213954;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 998;
  }

  .jade-handheld-navigation.is-open {
    display: block;
  }

  .jade-handheld-navigation .menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  /* 親項目：右にトグルボタンを置くための調整 */
  .jade-handheld-navigation .menu > li {
    position: relative;
  }

  .jade-handheld-navigation .menu > li > a {
    display: block;
    padding: 12px 16px;
    padding-right: 44px; /* 右のボタン分の余白 */
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.1);
    text-decoration: none;
  }

  /* 開閉ボタン（※実DOMが dropdown-toggle でないケースがあるので、ここは残してもOKな軽め指定） */
  .jade-handheld-navigation .menu-item-has-children > .dropdown-toggle {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    padding: 0;
    width: 24px;
    height: 24px;
    cursor: pointer;
  }

  /* サブメニュー（アコーディオン形式）
     ・を消し、文字色を白に */
  .jade-handheld-navigation .sub-menu {
    display: none;
    margin: 0;
    padding: 0 0 0 16px;
    list-style: none;
  }

  .jade-handheld-navigation .sub-menu li {
    list-style: none;
    margin: 4px 0;
  }

  .jade-handheld-navigation .sub-menu a {
    display: block;
    padding: 6px 0;
    color: #fff;
    text-decoration: none;
  }

  .jade-handheld-navigation .menu-item-has-children.open > .sub-menu {
    display: block;
  }
}

/* ===============================
   ヘッダー（固定）
================================= */

.site-header,
.site-header .col-full {
  background-color: #2A3F59 !important;
  background-image: none !important;
  color: #fff;
}

.site-header {
  max-width: 100% !important;
  height: 90px;
  color: #fff;
  background-color: #2A3F59;
  padding: 0 5%!important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

/* 本文をヘッダー分下げる */
body {
  padding-top: 60px;
}

/* ヘッダー内部調整 */
.jade-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.jade-header__logo img {
  display: block;
  width: 190px;
  height: 28px;
  max-width: 190px;
  max-height: 28px;
  aspect-ratio: 190 / 28;
  object-fit: contain;
 }

/* 画面が狭い時だけ縮める（比率は維持） */
@media (max-width: 480px){
  .jade-header__logo img{
    width: min(190px, 48vw);
    height: auto;
    max-height: 28px;
  }
}

/* PCナビの見た目 */
.jade-header__nav .menu {
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jade-header__nav a {
  color: #fff !important;
  padding: 8px 0;
  text-decoration: none;
}

.jade-header__nav a:hover {
  opacity: .85;
}

/* ===============================
   PCのみ：サブメニュー（ホバーで展開）
================================= */

@media (min-width: 1025px) {

  /* 親を基準点にする */
  .jade-header__nav .menu > li {
    position: relative;
  }

  /* 子メニュー初期状態：非表示 */
  .jade-header__nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #99AECE;
    padding: 8px 0;
    margin: 0;
    min-width: 180px;
    z-index: 9999;
    border-radius: 0px;
  }

  /* ホバーで表示 */
  .jade-header__nav .menu > li:hover > .sub-menu,
  .jade-header__nav .menu > li:focus-within > .sub-menu {
    display: block;
  }

  /* 子項目の「・」消す */
  .jade-header__nav .sub-menu li {
    list-style: none;
  }

  /* 子メニュー内のリンク */
  .jade-header__nav .sub-menu a {
    display: block;
    padding: 6px 16px;
    color: #fff !important;
    white-space: nowrap;
  }

  .jade-header__nav .sub-menu a:hover {
    background: rgba(255,255,255,0.12);
  }
}

/* ===============================
   フッター
================================= */

/* ・削除 & ベース色 */
.site-footer .footer-column ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.site-footer .footer-column li {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* テキストを白に */
.site-footer .footer-column,
.site-footer .footer-column h4,
.site-footer .footer-column a {
  color: #ffffff;
}

.site-footer .footer-column a {
  text-decoration: none;
}

/* スマホ・タブレット版フッター：常に開いた状態（＋アイコンは表示しない） */
@media (max-width: 1024px) {
  .site-footer .footer-column ul {
    display: block !important;
    margin-top: 8px;
  }

  .site-footer .footer-column h4 {
    cursor: default;
    position: relative;
    margin: 16px 0 4px;
  }
}

/* ===============================
   紫のフォーカス枠を削除
================================= */

a:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* ===============================
   利用規約関連
================================= */
.tos {
  margin: 0 10% 100px 10%;
}

.tos .article > h2,
.tos article.tos-body h2 {
  font-size: 20px !important;
  font-weight: 600 !important;
}

/* ===== コピーライト ===== */
.footer-copyright {
  padding: 16px 0;
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #ffffff;
}

/* ===============================
   特商法ページ（.tos）専用スタイル
================================= */

section.tos h2 {
  font-size: 20px !important;
  font-weight: 600;
  margin: 24px 0 8px;
  line-height: 1.4;
}

section.tos p {
  font-size: 16px;
  margin: 0 0 20px;
  line-height: 1.6;
}

section.tos ul {
  margin: 0 0 20px;
  padding-left: 20px;
  line-height: 1.5;
}

section.tos ul li {
  margin-bottom: 6px;
  font-size: 16px;
}

/* ============================
   グローバルメニュー右寄せ調整
============================= */

.site-header .col-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .primary-navigation {
  margin-left: auto;
}

.site-header .primary-navigation ul.menu {
  display: flex;
  gap: 28px;
}

.jade-header__search {
  margin-left: 20px;
}

/* ==========================================================
   Storefront ヘッダー並び替え（PC）
========================================================== */

@media (min-width: 1025px) {

  .site-header .col-full {
    display: flex;
    align-items: center;
  }

  .site-branding { order: 1; }
  .secondary-navigation { order: 2; }
  .site-search { order: 4; margin-left: 20px; }
  .storefront-primary-navigation { order: 3; margin-left:auto; }

  .storefront-primary-navigation .menu {
    display:flex !important;
    gap:28px;
    margin:0;
    padding:0;
    list-style:none;
  }

  .storefront-primary-navigation .menu > li > a {
    color: #fff !important;
    white-space: nowrap;
  }
}

/* ===============================
   WooCommerce 調整
================================= */

.woocommerce-breadcrumb {
  font-size: .875em;
  display: none;
}

/* カート・支払い・商品個別ページ：サイドバーを消して 1 カラム化 */
@media (min-width: 768px) {

  .woocommerce-cart .widget-area,
  .woocommerce-checkout .widget-area,
  .single-product .widget-area {
    display: none !important;
  }

  .left-sidebar.woocommerce-cart .content-area,
  .left-sidebar.woocommerce-checkout .content-area,
  .left-sidebar.single-product .content-area {
    width: 100% !important;
    float: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}

/* カート・支払い・商品個別ページのメイン領域だけ 1160px で中央寄せ（PC） */
@media (min-width: 1025px) {

  .woocommerce-cart #content .col-full,
  .woocommerce-checkout #content .col-full,
  .single-product #content .col-full {
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer .col-full {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.site-main {
  margin-bottom: 2.617924em;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

/* ===============================
   ヘッダー検索フォーム
================================= */

.jade-header__search {
  max-width: 260px;
  width: 100%;
}

.jade-header-search-form {
  margin: 0;
}

.jade-header-search-inner {
  position: relative;
  width: 100%;
}

.jade-header-search-field {
  width: 100%;
  padding: 8px 40px 8px 16px;
  border-radius: 999px;
  border: none;
  background-color: #ffffff;
  color: #000;
  font-size: 14px;
  box-sizing: border-box;
}

.jade-header-search-submit {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.jade-header-search-icon {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #00313a;
}

.jade-header-search-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background-color: #00313a;
  border-radius: 1px;
  right: -4px;
  bottom: -1px;
  transform: rotate(45deg);
}

.jade-header-search-field:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.6);
}

/* ============================
   検索結果ページ（共通レイアウト）
============================ */

.jade-search__hero{
  background:#3c4370;
  margin-top:20px;
  padding:40px 5%;
  color:#fff;
}

.jade-search__title{
  color:#fff;
}

.jade-search__hero-inner{
  max-width:1160px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:12px;
}

.jade-search__icon{
  display:inline-block;
  width:32px;
  height:32px;
  border-radius:50%;
  border:2px solid #fff;
  position:relative;
}

.jade-search__icon::after{
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  right: -12px;
  bottom: -6px;
  transform: rotate(45deg);
}

.jade-search__title{
  font-size:28px;
  margin:0;
}

.jade-search__breadcrumb,
.jade-search__summary{
  max-width:1160px;
  margin:16px auto 0;
  padding:0 5%;
}

.jade-search__breadcrumb{
  font-size:13px;
  color:#666;
}

.jade-search__breadcrumb a{
  color:#666;
  text-decoration:none;
}

.jade-search__breadcrumb a:hover{
  text-decoration:underline;
}

.jade-search__summary p{
  margin:12px 0 24px;
  font-size:16px;
}

.jade-search__count{
  margin-left:8px;
  font-weight:600;
}

.jade-search__list{
  max-width:1160px;
  margin:0 auto 60px;
  padding:0 5%;
}

.jade-search-card{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:32px;
  margin-bottom:48px;
}

.jade-search-card__thumb img{
  width:100%;
  height:auto;
  display:block;
}

.jade-search-card__date{
  font-size:12px;
  color:#888;
}

.jade-search-card__title{
  font-size:18px;
  font-weight:600;
  margin:4px 0 8px;
}

.jade-search-card__title a{
  color:#000;
  text-decoration:none;
}

.jade-search-card__title a:hover{
  text-decoration:underline;
}

.jade-search-card__excerpt{
  font-size:14px;
  line-height:1.7;
  margin-bottom:12px;
}

.jade-search-card__tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  list-style:none;
  margin:0;
  padding:0;
}

.jade-search-card__tags li{
  border:1px solid #00313a;
  border-radius:999px;
  padding:4px 10px;
  font-size:12px;
}

.jade-search__pagination{
  text-align:center;
  margin:32px 0 0;
}

@media (max-width:768px){
  .jade-search-card{
    grid-template-columns:1fr;
    gap:16px;
  }
}

@media (min-width: 768px) {
  .storefront-breadcrumb {
    padding: 0px!important;
    margin: 0px!important;
  }
}

.jade-search{
  margin-bottom: 2.617924em;
  width: 100%!important;
  max-width:100%!important;
  margin-left: auto;
  margin-right: auto;
}

.pagination, .woocommerce-pagination {
  border:0px!important;
}

/* ==========================
   検索結果ページのページャー
========================== */

.search-results .navigation.pagination {
  margin: 70px 0;
}

.search-results .navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 23px;
}

.search-results .navigation.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin: 10px;
  color: #00242A;
  border: 1px solid #2A3F59;
  text-decoration: none;
  transition: all 0.3s;
}

.search-results .navigation.pagination .page-numbers.current {
  background: #2A3F59;
  color: #fff;
}

.search-results .navigation.pagination .page-numbers.dots {
  background: #fff;
  border: none;
}

.search-results .navigation.pagination .page-numbers:not(.current):not(.dots):hover {
  background: #2A3F59;
  color: #fff;
}

.search-results .navigation.pagination .page-numbers.prev,
.search-results .navigation.pagination .page-numbers.next {
  min-width: 44px;
  padding: 0 16px;
}

/* ================================
   製品一覧：サイドバー＋一覧エリアのレイアウト
================================ */

body.post-type-archive-product .jade-products-wrap,
body.tax-product_cat .jade-products-wrap,
body.tax-product_tag .jade-products-wrap {
  max-width: 1080px;
  margin: 40px auto 80px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  column-gap: 40px;
}

body.post-type-archive-product #primary,
body.tax-product_cat #primary,
body.tax-product_tag #primary,
body.post-type-archive-product #secondary,
body.tax-product_cat #secondary,
body.tax-product_tag #secondary {
  float: none;
  width: auto;
}

body.post-type-archive-product .jade-products-sidebar #secondary,
body.tax-product_cat .jade-products-sidebar #secondary,
body.tax-product_tag .jade-products-sidebar #secondary {
  width: 100%;
}

/* モバイル（1カラム） */
@media (max-width: 1024px) {
  body.post-type-archive-product .jade-products-wrap,
  body.tax-product_cat .jade-products-wrap,
  body.tax-product_tag .jade-products-wrap {
    display: block;
    max-width: 100%;
    margin: 20px auto 40px;
  }

  body.post-type-archive-product .jade-products-sidebar,
  body.tax-product_cat .jade-products-sidebar,
  body.tax-product_tag .jade-products-sidebar {
    margin-bottom: 24px;
  }
}

/* =========================================================
   単品ページ：上部エリアの装飾
========================================================= */

.single-product .single-product-brand {
  display: inline-block;
  margin-bottom: 8px;
}

.single-product .jade-single-price {
  font-size: 20px;
  font-weight: 700;
}

.single-product .jade-single-price__regular {
  opacity: .6;
  margin-right: 4px;
}

.single-product .jade-single-price__sale {
  color: #000;
}

.single-product .jade-single-price__tax {
  font-size: 14px;
  font-weight: 400;
  margin-left: 4px;
}

.single-product .woocommerce-Tabs-panel h2 {
  display: none;
}

/* ===============================
   カートページ：左寄り補正＆上部のズレ調整
============================== */

@media (min-width: 768px) {
  body.left-sidebar.woocommerce-cart #primary.content-area {
    float: none !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  body.woocommerce-cart #content .col-full,
  body.woocommerce-cart .site-main,
  body.woocommerce-cart .woocommerce {
    max-width: 1160px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 768px) {
  body.woocommerce-cart .site-main {
    padding-top: 40px;
  }
}

/* ===============================
   ブログ一覧：ヘッダー直下の空白をなくす
============================== */

body.blog .site-main,
body.archive.category .site-main {
  padding-top: 0;
}

body.blog .site-main > *:first-child,
body.archive.category .site-main > *:first-child {
  margin-top: 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.entry-content cite,
.entry-content figcaption,
.entry-content table,
.entry-content address,
.entry-content .wp-caption-text,
.entry-content .wp-block-file {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
}

@supports ( font-variation-settings: normal ) {
  .entry-content h1,
  .entry-content h2,
  .entry-content h3,
  .entry-content h4,
  .entry-content h5,
  .entry-content h6,
  .entry-content cite,
  .entry-content figcaption,
  .entry-content table,
  .entry-content address,
  .entry-content .wp-caption-text,
  .entry-content .wp-block-file {
    font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  }
}

/* =========================================================
   タブレット以下：ヘッダーのカートアイコンを非表示（メニュー被り対策）
========================================================= */
@media (max-width: 1024px){
  .jade-header__cart{
    display: none !important;
  }
}

/*携帯版メニュー*/
a:focus, input:focus, textarea:focus, button:focus{
  outline:none;
}

/* =========================================================
   SP/タブレット：メニュー矢印（実DOM/カスタムDOM両対応）
   ・通常行：右端に「›」
   ・子メニューあり：ボタン側に「＞」（開いたら下向き）
   ・＋は見た目だけ消す（動作は残す）
========================================================= */
@media (max-width: 1024px){

  /* 対象コンテナを両方まとめて扱う */
  .handheld-navigation .menu > li,
  .jade-handheld-navigation .menu > li{
    position: relative;
  }

  /* まず：リンク右側に矢印スペース確保 */
  .handheld-navigation .menu > li > a,
  .jade-handheld-navigation .menu > li > a{
    position: relative;
    padding-right: 56px !important;
  }

  /* 通常行（子メニューなし）：右端に › を強制表示 */
  .handheld-navigation .menu > li:not(.menu-item-has-children) > a::after,
  .jade-handheld-navigation .menu > li:not(.menu-item-has-children) > a::after{
    content: "›" !important;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    line-height: 1;
    color: #fff;
    opacity: .95;
    pointer-events: none;
  }

  /* 子メニューあり：リンク側の矢印は出さない（重複防止） */
  .handheld-navigation .menu-item-has-children > a::after,
  .jade-handheld-navigation .menu-item-has-children > a::after{
    content: "" !important;
  }

  /* 子メニュー開閉ボタン：submenu-toggle / dropdown-toggle どちらでも同じ見た目に */
  .handheld-navigation button.submenu-toggle,
  .handheld-navigation .dropdown-toggle,
  .jade-handheld-navigation button.submenu-toggle,
  .jade-handheld-navigation .dropdown-toggle{
    font-size: 0 !important;     /* 元の + を消す */
    line-height: 0 !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;

    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    cursor: pointer;
    z-index: 10 !important;
  }

  /* 閉じてる時：＞ */
  .handheld-navigation button.submenu-toggle::after,
  .handheld-navigation .dropdown-toggle::after,
  .jade-handheld-navigation button.submenu-toggle::after,
  .jade-handheld-navigation .dropdown-toggle::after{
    content: "›" !important;
    display: block;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    opacity: .95;
    transform: rotate(0deg);
    transition: transform .2s ease;
  }

  /* 開いたら下向き（aria-expanded が true） */
  .handheld-navigation button.submenu-toggle[aria-expanded="true"]::after,
  .handheld-navigation .dropdown-toggle[aria-expanded="true"]::after,
  .jade-handheld-navigation button.submenu-toggle[aria-expanded="true"]::after,
  .jade-handheld-navigation .dropdown-toggle[aria-expanded="true"]::after{
    transform: rotate(90deg);
  }
}

/*買い物かごページ*/
body.left-sidebar.woocommerce-cart #primary.content-area {
  float: none !important;
  width: 100% !important;
  margin: 0 auto !important;
  margin-top: 30px !important;
}

/* ヘッダーが fixed で被さる分、本文を下げる */
body.tax-product_cat #content.site-content{
  padding-top: var(--header-offset);
}

/* =========================================================
   矢印の位置/サイズを完全統一（通常リンクの › と同じ）
========================================================= */
@media (max-width: 1024px){

  /* 通常リンクの矢印（›）の基準を固定 */
  .handheld-navigation .menu > li:not(.menu-item-has-children) > a::after,
  .jade-handheld-navigation .menu > li:not(.menu-item-has-children) > a::after{
    right: 16px !important;
    font-size: 22px !important;
    line-height: 1 !important;
  }

  /* 子メニューありのボタン矢印（＞）も同じ位置・サイズに */
  .handheld-navigation button.submenu-toggle::after,
  .handheld-navigation .dropdown-toggle::after,
  .jade-handheld-navigation button.submenu-toggle::after,
  .jade-handheld-navigation .dropdown-toggle::after{
    position: absolute !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) rotate(0deg) !important;

    font-size: 22px !important;   /* ← 通常 › と合わせる */
    line-height: 1 !important;
    font-weight: 700 !important;  /* くっきり（任意） */
  }

  /* ボタン自体の位置も統一（右16px、中央揃え） */
  .handheld-navigation button.submenu-toggle,
  .handheld-navigation .dropdown-toggle,
  .jade-handheld-navigation button.submenu-toggle,
  .jade-handheld-navigation .dropdown-toggle{
    right: 0 !important;          /* after の right で揃えるため、ボタンは0基準 */
    width: 56px !important;       /* 右側に余白を持たせてクリックしやすく */
    height: 44px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  /* 開いたら下向き（回転だけ追加） */
  .handheld-navigation button.submenu-toggle[aria-expanded="true"]::after,
  .handheld-navigation .dropdown-toggle[aria-expanded="true"]::after,
  .jade-handheld-navigation button.submenu-toggle[aria-expanded="true"]::after,
  .jade-handheld-navigation .dropdown-toggle[aria-expanded="true"]::after{
    transform: translateY(-50%) rotate(-90deg) !important;
  }
}

/* 空カートのアイコン（before）を消す */
.wc-block-cart__empty-cart__title.with-empty-cart-icon::before{
  content: none !important;
  display: none !important;
}

:root :where(.wp-block-separator.is-style-dots):before{
  content: none !important;
  display: none !important;
}

/*簡単な説明の非表示*/
#postexcerpt {
    display: none !important;
}