.elementor-kit-8{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#312F2F;--e-global-color-accent:#005BAC;--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-8 e-page-transition{background-color:#FFBC7D;}.elementor-kit-8 h2{font-size:23px;font-weight:600;}.elementor-kit-8 h3{font-size:21px;}.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 *//* ================================
   ウィジェット全体　これはTooltip用目的ページなどでコードを使ってる
================================ */
.purpose-info-btn{
  position: relative;
  overflow: visible !important;
  z-index: 1;
}

/* 開いている項目は前面に出す */
.purpose-info-btn.tip-open{
  z-index: 30;
}

/* ================================
   ボタン本体
   → 右側にアイコン分の余白を確保
================================ */
.purpose-info-btn .elementor-button{
  position: relative;
  overflow: visible !important;
  padding-right: 60px;
}

/* ================================
   iアイコン（見た目のみ）
   ※クリックは別レイヤーで処理
================================ */
.purpose-info-btn .elementor-button::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #2f6ea6;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='6.5' r='2.2' fill='white'/%3E%3Crect x='10.6' y='9.2' width='2.8' height='9.8' rx='1.4' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;

  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.16);
  z-index: 3;
}

/* ================================
   クリック判定用レイヤー
================================ */
.purpose-info-btn .info-hit{
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  -webkit-tap-highlight-color: transparent;
}

/* キーボードフォーカス */
.purpose-info-btn .info-hit:focus-visible{
  outline: 2px solid #1d4ed8;
  outline-offset: 2px;
}

/* ================================
   吹き出し（説明テキスト）
================================ */
.purpose-info-btn::before{
  content: attr(data-tip);
  position: absolute;
  right: 0;
  top: calc(100% + 16px);
  width: 540px;
  max-width: min(540px, calc(100vw - 32px));
  box-sizing: border-box;

  background: #ffffff;
  border: 1px solid #c9dbee;
  border-radius: 26px;
  padding: 24px 28px;
  color: #333;
  font-size: 16px;
  line-height: 2;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);

  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition:
    opacity .22s ease,
    visibility .22s ease,
    transform .22s ease;

  z-index: 10;
  pointer-events: none;
}

/* ================================
   吹き出しのしっぽ
================================ */
.purpose-info-btn::after{
  content: "";
  position: absolute;
  right: 40px;
  top: calc(100% + 6px);
  width: 18px;
  height: 18px;
  background: #fff;
  border-left: 1px solid #c9dbee;
  border-top: 1px solid #c9dbee;
  transform: rotate(45deg);

  opacity: 0;
  visibility: hidden;
  transition:
    opacity .22s ease,
    visibility .22s ease,
    transform .22s ease;
  z-index: 9;
}

/* ================================
   hoverでは開かない
================================ */
@media (hover:hover){
  .purpose-info-btn:hover::before,
  .purpose-info-btn:hover::after{
    opacity: 0;
    visibility: hidden;
  }
}

/* ================================
   iクリック時のみ表示
================================ */
.purpose-info-btn.tip-open::before,
.purpose-info-btn.tip-open::after{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ================================
   タブレット調整
================================ */
@media (max-width: 1024px){
  .purpose-info-btn::before{
    max-width: min(540px, calc(100vw - 40px));
  }
}

/* ================================
   スマホ調整
================================ */
@media (max-width: 767px){
  .purpose-info-btn .elementor-button{
    padding-right: 52px;
  }

  .purpose-info-btn .elementor-button::after{
    right: 10px;
    width: 32px;
    height: 32px;
    background-size: 16px 16px;
  }

  .purpose-info-btn .info-hit{
    right: 10px;
    width: 32px;
    height: 32px;
  }

  .purpose-info-btn::before{
    width: 300px;
    max-width: calc(100vw - 20px);
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.8;
  }

  .purpose-info-btn::after{
    right: 26px;
  }
}

/* ================================
   極小画面の安全策
================================ */
@media (max-width: 380px){
  .purpose-info-btn::before{
    width: auto;
    max-width: calc(100vw - 16px);
  }
}

/* ================================
   モーション軽減
================================ */
@media (prefers-reduced-motion: reduce){
  .purpose-info-btn::before,
  .purpose-info-btn::after{
    transition: none;
  }
}
/* モバイルで横スクロール（左右のブレ）を防ぐため */
html, body {
    overflow-x: hidden;
}

body.single-post img,
body.single-post iframe,
body.single-post video {
    max-width: 100%;
    height: auto;
}

body.single-post table {
    display: block;
    overflow-x: auto;
    max-width: 100%;
}/* End custom CSS */