.elementor-kit-10{--e-global-color-primary:#362B28;--e-global-color-secondary:#454545;--e-global-color-text:#2D2D2D;--e-global-color-accent:#B99838;--e-global-color-8f8e50b:#FFFFFF;--e-global-color-65f614b:#816B33;--e-global-typography-primary-font-family:"Shippori Mincho";--e-global-typography-primary-font-size:32px;--e-global-typography-primary-font-weight:400;--e-global-typography-primary-line-height:39px;--e-global-typography-secondary-font-family:"Shippori Mincho";--e-global-typography-secondary-font-size:20px;--e-global-typography-secondary-font-weight:400;--e-global-typography-secondary-line-height:30px;--e-global-typography-text-font-family:"Shippori Mincho";--e-global-typography-text-font-size:18px;--e-global-typography-text-font-weight:300;--e-global-typography-text-line-height:31px;--e-global-typography-accent-font-family:"Zen Kaku Gothic New";--e-global-typography-accent-font-weight:400;overscroll-behavior:auto;}.elementor-kit-10 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@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-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: 20px;
  right: 30px;
  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: #000;
  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移動 */
    }
  }/* End custom CSS */