.elementor-kit-6{--e-global-color-primary:#000000;--e-global-color-secondary:#4A4A4A;--e-global-color-text:#000000;--e-global-color-accent:#8D0707;--e-global-typography-primary-font-family:"Noto Serif JP";--e-global-typography-primary-font-size:16px;--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Noto Serif JP";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Noto Serif JP";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Noto Serif JP";--e-global-typography-accent-font-weight:500;font-size:16px;line-height:1.9em;letter-spacing:0.05em;}.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;}.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 */.white-background {
  background-color: #ffffff;
  color: #000000;
  display: inline;
  padding: 0.05em 0.2em; /* 上下を最小限に */
  line-height: 1; /* 行の高さを詰める */
}

.simple-white-marker {
  background-color: #fff;
  padding: 0.02em 0.2em; /* ←上下かなり薄めに */
  font-weight: bold;
}

/* キラーン光線エフェクトだけ */
.shine-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.shine-button::before {
  content: "";
  position: absolute;
  top: 0;
  right: -75%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineMove 3.2s linear infinite; /* ← 合計：1.2s（動き）＋2s（間） */
  z-index: 2;
  opacity: 0;
}

/* キラーンの速さ＆止まる時間を調整 */
@keyframes shineMove {
  0% {
    right: -75%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  35% {
    right: 125%;
    opacity: 1;
  }
  36% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    right: 125%;
  }
}


.underline-highlight {
  position: relative;
  display: inline-block;
  font-weight: bold;
  z-index: 0;
}

.underline-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px; /* 下線の太さ */
  width: 0;
  background-color: #ffeb3b; /* 黄色 */
  z-index: -1;
  transition: width 0.8s ease;
}

.underline-highlight.visible::after {
  width: 100%;
}/* End custom CSS */