/*--------------------------------------------------------------
# Original Theme Customize from here
--------------------------------------------------------------*/

/* スムーズスクロールを有効化 */
html {
  scroll-behavior: smooth;
}

/* バウンス（スクロール連鎖）を防ぐ */
html, body {
  overscroll-behavior-y: none;
}

/* ヘッダー固定 */
.header {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: top .5s; /* アニメーション効果を追加 */
}

/* サイトロゴ */
img.site-logo {
  width: 146px;	
}
@media screen and (min-width: 768px) {
  img.site-logo {
    width: 240px;
  }
}

/* スマートフォンのみ改行 */
br.sp-br {
  display: block; /* スマホでは改行表示 */
}
@media screen and (min-width: 768px) {
  br.sp-br {
    display: none; /* PCでは改行非表示 */
  }
}

/* グローバルナビのhover色 */
nav.nav-second .dropdown-item:focus, nav.nav-second .dropdown-item:hover {
    color: #ffffff;
    background-color: var(--bs-primary);
}

/*--------------------------------------------------------------
## footer
--------------------------------------------------------------*/
/* topへ戻るボタン */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    z-index: 999;
}
#page-top a {
    background: rgba(100,100,100,0.8);
    text-decoration: none;
    color: #fff;
    width: 90px;
    padding: 10px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
}
#page-top a:hover {
    text-decoration: none;
    background: rgba(150,150,150,0.9);
}	
/*--------------------------------------------------------------
## print setting
--------------------------------------------------------------*/
