/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 27 2026 | 06:59:42 */
/* わたしたちについてページ */
/* イベントサービスの強み */
/* ===== 共通（初期状態）===== */
.p-about-strengths .content .item-text::before {
  opacity: 0;
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}
/* 表示状態 */
.p-about-strengths .content .item-text.is-active::before {
  opacity: 1;
  transform: translate(-50%, -50%)!important;
}

/* イベントサービスの特徴 */
/* ===== 共通（初期状態）===== */
.p-about-feature .content::before {
  opacity: 0;
  transition: 
    transform 1s ease-out,
    opacity 1.5s ease-out;
}
/* 左から登場 */
.p-about-feature .content.bg-left::before {
  transform: translate(-100vw, -50%)!important;
}
/* 右から登場 */
.p-about-feature .content.bg-right::before {
  transform: translate(100vw, -50%)!important;
}
/* 表示状態 */
.p-about-feature .content.bg-left.is-active::before,
.p-about-feature .content.bg-right.is-active::before {
  transform: translate(0, -50%)!important;
  opacity: 1;
}
@media (max-width: 1099px) {
	.p-about-feature .content.bg-left.is-active::before {
	  transform: translate(50%, -50%)!important;
	}
	.p-about-feature .content.bg-right.is-active::before {
	  transform: translate(-50%, -50%)!important;
	}
}




/* 会社概要ページ */
/* 経営理念 */
/* 初期状態（左に隠す） */
.p-company-philosophy .content .title-area::before {
  opacity: 0;
  transform: translateX(-100%)!important;
  transition: 
    transform 1s ease-out,
    opacity 1.5s ease;
}
/* 表示状態 */
.p-company-philosophy .content .title-area.is-active::before {
  transform: translateX(0)!important;
  opacity: 1;
}

