.elementor-kit-6{--e-global-color-primary:#469544;--e-global-color-secondary:#995959;--e-global-color-text:#141414;--e-global-color-accent:#2F38E5;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;--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-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* 正方形ボックス本体 */
.square-box{
  aspect-ratio: 1 / 1;          /* ←これで正方形 */
  width: min(340px, 100%);      /* 好みでサイズ調整 */
  border: 1px solid rgba(0,0,0,.35);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;          /* 縦中央 */
  justify-content: center;      /* 横中央 */
  padding: 20px;
}

/* コンテナ内の中身が100%高にならない時の保険 */
.square-box > .e-con-inner{
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;      /* 中身もど真ん中 */
  gap: 10px;
}

/* ホバーでちょいリッチに（任意） */
.square-box:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

/* 行全体を縦中央に並べる */
.menu-row {
  display: flex;
  align-items: center;
}

/* 左右のテキストウィジェットの余白を消す */
.menu-row .elementor-widget-text-editor {
  margin: 0;
  padding: 0;
}

/* メニュー名・金額の <p> だけ段落マージンを消す */
.menu-row .elementor-widget-text-editor p {
  margin: 0;
}

/* ----------------------------- */
/* ▼ モバイル時に小さくするCSS */
/* ----------------------------- */
@media (max-width: 767px) {
  .square-box {
    aspect-ratio: unset;   /* 正方形の拘束を解除 */
    width: 280px;          /* ← 横幅を固定（好きなpxに変更OK） */
    height: 120px;          /* ← 高さも固定 */
    padding: 12px;         
    margin-left: auto;     /* 画面中央に寄せたい場合 */
    margin-right: auto;    /* 画面中央に寄せたい場合 */
  }

  .square-box > .e-con-inner {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}/* End custom CSS */