.elementor-kit-151{--e-global-color-primary:#000000;--e-global-color-secondary:#8A8987;--e-global-color-text:#000000;--e-global-color-accent:#FFFFFF;--e-global-color-8d8c10c:#000000;--e-global-color-774394d:#E7E7E7;--e-global-color-252d1ab:#8A8987;--e-global-color-bfef60c:#F2F2F2;--e-global-color-6cf69a1:#0076E0;--e-global-color-addfb44:#E08A00;--e-global-color-7d5d1f7:#A17228;--e-global-color-c98cf43:#2E5F8B;--e-global-color-17574d4:#614E30;--e-global-color-220af3f:#242E36;--e-global-color-5326713:#EE8300;--e-global-color-25b2c90:#E70000;--e-global-color-cbf5885:#EE8D02;--e-global-color-2a942ab:#FFC871;--e-global-color-1c7dd97:#005FB4;--e-global-color-880a044:#002647D4;--e-global-color-bc63633:#005BAD;--e-global-color-4942b8d:#004C91;--e-global-color-2a4cce8:#F5F5F5;--e-global-typography-primary-font-family:"Noto Sans JP";--e-global-typography-primary-font-size:54px;--e-global-typography-primary-font-weight:700;--e-global-typography-primary-line-height:26px;--e-global-typography-secondary-font-family:"Noto Sans JP";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Noto Sans JP";--e-global-typography-text-font-size:18px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:1.875em;--e-global-typography-text-letter-spacing:0em;--e-global-typography-accent-font-family:"Zen Kaku Gothic New";--e-global-typography-accent-font-weight:500;--e-global-typography-accent-line-height:34px;}.elementor-kit-151 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1100px;}.e-con{--container-max-width:1100px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-151{--e-global-typography-primary-font-size:26px;--e-global-typography-secondary-font-size:13px;--e-global-typography-secondary-line-height:26px;--e-global-typography-text-font-size:13px;--e-global-typography-text-line-height:26px;--e-global-typography-accent-font-size:13px;--e-global-typography-accent-line-height:26px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ===============================================
   モーダルメニュー スタイル (clip-path版)
=============================================== */

/* モーダルメニューの基本スタイル（閉じた状態） */
.modal-menu {
  position: fixed;
  top: 0;
  left: auto;
  right: 0;
/* Elementorで調整 */
  /*width: 100%;
  height: 100vh;*/
  /* ビューポートの高さ一杯に */
/* 参考サイトの背景色 */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: 999;

  /* アニメーションの定義 */
  transition: clip-path 0.7s cubic-bezier(0.31, -0.01, 0.18, 0.97), opacity 0.4s;
  
  /* 初期状態のマスク（下部に閉じた状態） */
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
}

/* メニュー表示時のスタイル */
.modal-menu.is-active {
  opacity: 1;
  /* 開いた状態のマスク（全体表示） */
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}




/* ===============================================
   トグルボタン スタイル
=============================================== */
.toggle-button {
  position: fixed;
  top:10px;
  right: 10px;
  width: 60px;
  height: 42px;
  cursor: pointer;
  z-index: 9999;
  background: none;
  border: none;
  padding: 0;
 
}

.toggle-button span {
  display: block;
  position: absolute;
  left: 6px;
  width: 50px;
  height: 1px;
  background-color: #999;
  transition: transform 0.5s, opacity 0.5s, background-color 0.5s;
}

.toggle-button span:nth-child(1) { top: 10px; }
.toggle-button span:nth-child(2) { top: 20px; }
.toggle-button span:nth-child(3) { top: 30px; }
.toggle-button.is-active span {
  background-color: #333; /* ×印の色 */
}
.toggle-button.is-active span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.toggle-button.is-active span:nth-child(2) {
  opacity: 0;
}
.toggle-button.is-active span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

/* トグルボタンのホバー・フォーカス時の背景色を無効化 */
.toggle-button:hover,
.toggle-button:focus {
  background-color: transparent !important; /* 背景色を強制的に透明にする */
  outline: none; /* フォーカス時の青い枠線も消す場合 */
}


/* ===============================================
   機能性スタイル
=============================================== */
@media screen and (max-width: 768px) {
  .toggle-button {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
body.no-scroll {
  overflow: hidden;
}

 /* 全てのアニメーション画像に共通のスタイル */
  .animated-image {
    animation-duration: 1.5s;             /* アニメーションの時間 */
    animation-timing-function: ease-out;  /* イージングの種類 */
    animation-fill-mode: forwards;        /* アニメーション後の状態を維持 */
  }

  /* 右に動くアニメーションを適用 */
  .slide-right {
    animation-name: move-right;
  }

  /* 左に動くアニメーションを適用 */
  .slide-left {
    animation-name: move-left;
  }


  /* 右に動くアニメーションを定義 */
  @keyframes move-right {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(100px); /* 右に100px移動 */
    }
  }

  /* 左に動くアニメーションを定義 */
  @keyframes move-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100px); /* ★左に100px移動 */
    }
  }
  
  /* ===============================================
   倉庫ループやシングルページにカテゴリの装飾
=============================================== */
  
  /* カテゴリ共通の装飾（お好みで） */
/* カテゴリラベルの共通デザイン */
.custom-cat-badge {
    display: inline-block !important;
    padding: 5px 12px !important;
    margin: 2px 5px 2px 0 !important;
    border-radius: 6px !important; /* 角丸（カプセル型） */
    font-size: 0.8em !important;
    font-weight: bold !important;
    color: #ffffff !important;
    line-height: 1.5 !important;
    vertical-align: middle;
}

/* カテゴリ別カラー設定 */
.cat-shiten  { background-color: #005BAD !important; }
.cat-soko    { background-color: #f39c12 !important; } /* オレンジ */
.cat-eigyo   { background-color: #3498db !important; } /* 青 */
.cat-somu    { background-color: #95a5a6 !important; } /* グレー */
.cat-yuso    { background-color: #2ecc71 !important; } /* 緑 */
.cat-kamotsu { background-color: #e74c3c !important; } /* 赤 */

/* 見出しの中で使用する場合の微調整（必要に応じて） */
.elementor-heading-title .custom-cat-badge {
    letter-spacing: normal; /* 見出しの文字間隔をリセット */
}

/* ===============================================
   投稿一覧のタイトル高さを揃える行間固定
=============================================== */


.full-bg-cta .elementor-cta__bg-wrapper {
    background-color: #f5f5f5 !important; /* 薄いグレー（#f5f5f5） */
}

/* 2. 画像の設定と20pxの余白 */
.full-bg-cta .elementor-cta__bg {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;

    /* 20pxの余白を作る設定 */
    width: calc(100% - 40px) !important;
    height: calc(100% - 40px) !important;
    margin: 20px !important;
}

@media screen and (max-width: 768px) {
.full-bg-cta .elementor-cta__bg {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;

    /* 20pxの余白を作る設定 */
    width: calc(100% - 80px) !important;
    height: calc(100% - 40px) !important;
    margin: 20px !important;
}
}

/*デスクトップとスマホで改行を切り替える*/
.br-dt {display:none; }
.br-sp {display: inline; }
@media screen and (min-width: 768px){
.br-dt {display:inline; }
.br-sp {display: none; }
}/* End custom CSS */