/* =========================================================
   utility.css
   余白・表示切替など、小さな便利クラス
========================================================= */

.u-center { text-align: center !important; }
.u-sp-only { display: none !important; }

@media (max-width: 767px){
  .u-pc-only { display: none !important; }
  .u-sp-only { display: block !important; }
}


/* Smart Slider下の余白を消す */
.entry-content > .n2_clear {
  margin-bottom: 0 !important;
}



/*faq調整*/
/* Q（質問） */
.faq-question.faq-item {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Q（質問）の背景を透明に */
.faq-question.faq-item {
  background: transparent !important;
}

/* A（回答） */
.faq-answer.faq-item {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Q・Aを小さく＆軽く */
.faq-question-label,
.faq-answer-label {
  font-size: 18px !important;
  font-weight: 400 !important;
}

/* テーブル内の文字色を統一 */
.wp-block-table,
.wp-block-table *,
.wp-block-flexible-table-block-table,
.wp-block-flexible-table-block-table * {
  color: #5B4B45 !important;
}

@media (min-width: 769px) {



    .navi-in::after {
    background: none !important;
    height: 0 !important;
  }


  .navi-in > ul > li > a {
    position: relative;
    background: transparent !important;
  }

  .navi-in > ul > li > a:hover,
  .navi-in > ul > li:hover > a {
    background: transparent !important;
  }

  .navi-in > ul > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 14px;
    width: calc(100% - 40px);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, #FFD6B5 0%, #F6A6A6 50%, #BCA8FF 100%);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform .45s cubic-bezier(.22,1,.36,1);
  }

  .navi-in > ul > li > a:hover::after {
    transform: translateX(-50%) scaleX(1);
  }

  



}