@charset "UTF-8";
/* production date 2025/11/10 ~ 2026/01/22 */
/* ベース用 scss */
/*----------------------------------------------------------------------------------------------------------------
media query
----------------------------------------------------------------------------------------------------------------*/
/* variable declaration */
/* main margin */
/* main padding */
/*----------------------------------------------------------------------------------------------------------------
variable declaration / mixin
----------------------------------------------------------------------------------------------------------------*/
/* color */
/* gradient */
/* underline */
/* drop-shadow */
/* tx drop-shadow */
/* font */
/* hover transition */
/* img */
/*----------------------------------------------------------------------------------------------------------------
base
----------------------------------------------------------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

/* ハンバーガーメニュー開閉用 */
html.no-smooth,
html.no-smooth body {
  scroll-behavior: auto !important;
}

body {
  background: #FFF;
  color: #37485A;
}

/* ローディング中はスクロール禁止 */
html.scroll-lock-loading,
body.scroll-lock-loading {
  height: 100%;
  overflow: hidden !important;
}

/* body固定で位置保持 */
body.scroll-lock-loading {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  touch-action: none;
}

/* ヘッダー用 */
body.is_menu-open .lower_header_block,
body.is_menu-open .sp_header_block {
  top: 0 !important;
}

/* 下層ページのスクロールロック（固定位置でスクロール禁止） */
body.scroll-lock-nav {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

/* アンカーリンク用 */
.anchor-target {
  scroll-margin-top: 0px !important;
}

img {
  user-select: none; /* 選択禁止 */
  -webkit-user-drag: none; /* Webkitブラウザ（ChromeやSafari）向け */
  -webkit-user-select: none;
  -moz-user-select: none; /* Firefox向け */
  -ms-user-select: none; /* IE向け */
  pointer-events: none; /* 右クリックや長押し禁止 */
}

p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 15px;
    line-height: 1.6;
  }
}
