@charset "UTF-8";
/*タイトル非表示*/
.ast-archive-title, .ast-page-title, .entry-title {
  display: none !important;
}
/*イメージリンクを動かす*/
a:hover img {
  position: relative;
  top: 3pt;
  left: 3pt;
}
/*レスポンシブ*/
/*PC　1024 タブレット600　スマホ*/
.sp {
  display: none;
}
.tab {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tab {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .sp {
    display: block;
  }
  .tab {
    display: none;
  }
}
/*========================================
 スマホだけ改行（sp_brクラス）
=========================================*/
/* PC・タブレットでは非表示（改行しない） */
@media screen and (min-width: 601px) {
  br.sp_br {
    display: none;
  }
}
/* スマホでは表示（改行する） */
@media screen and (max-width: 600px) {
  br.sp_br {
    display: inline;
  }
}
.p-no-margin p {
  margin-bottom: 0;
}
/*　メニュー固定　*/
/* 常に固定 */
.floating-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  animation: fadeInDown 0.6s ease forwards;
}
/* 下のコンテンツが潜らないよう余白 */
body {
  padding-top: 100px;
  /* ヘッダー高さに合わせる */
}
@media screen and (max-width: 600px) {
  body {
    padding-top: 0 !important;
  }
}
/* ふわっと */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　ナビリンクに下線　*/
/* 画像リンクを相対配置 */
.elementor-widget-image a {
  position: relative;
  display: inline-block;
}
/* 下線 */
.elementor-widget-image a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  /* 画像の下 */
  width: 0;
  height: 1px;
  background: #39B54A;
  transition: width 0.3s ease;
}
/* ホバー時に伸ばす */
.elementor-widget-image a:hover::after {
  width: 100%;
}
/*　未分類の表示を消す　*/
a[href*="category/uncategorized"] {
  display: none;
}
/*# sourceMappingURL=style.css.map */