/* Base */
@import url(/.shared-ws/themes/bindweed/css/core.css);





/* Theme */
@import url(/.shared-ws/themes/bindweed/css/theme.css);
.mainHeader .header__wrap {
  background-image: url("https://ls-release.lekumo.blog/files/bg-article.png");
}






/* Custom */
 body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 60px; /* ヘッダーの高さに合わせる */
  }
  .fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff; /* 背景色を白に変更 */
    color: black;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* 下に影をつける */
    z-index: 1000;
  }
  .fixed-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .fixed-header .logo {
    background: url(https://tostore.jp/wp-content/themes/toSTORE_service_site/img/logo.svg) no-repeat center; /* ロゴ画像を背景に設定 */
    width: 180px; /* ロゴのサイズに応じて調整する */
    height: 60px; /* ロゴのサイズに応じて調整する */
    display: block; /* リンクがブロックレベル要素として振る舞うようにする */
    margin-left: 15px; /* 左に少し余白を取る */
  }

  .fixed-header .navigation {
    display: flex;
    justify-content: flex-end;
  }
  .fixed-header .navigation a {
    color: black;
    text-decoration: none;
    padding: 0 15px;
  }
  .fixed-header .navigation a:hover {
    text-decoration: underline;
  }

.mainHeader {
  z-index: 100;
  position: relative; 
}
.header__title {
    font-size: 40px;
    line-height: 1.25;
    font-weight: bold;
    text-align: center;
    color: black !important; 
}

mainHeader .header__title a{
    color: black;
}

.footer__themename {
    display: none;
}



