@charset "UTF-8";
/*============================
　フォント指定
============================*/
/* ローカルフォント指定 */
@font-face {
  font-family: "shirokuma";
  src: url(../fonts/001Shirokuma_sub.otf);
}
/*============================
  サイト毎汎用デフォルト設定関連
============================*/
:root {
  color-scheme: only light;
  /* 基本カラー設定 */
  --default_color-set01: #ff8800;
  --default_color-set02: #0030b6;
  --default_color-set03: #016c01;
  --default_color-set04: #d00f0f;
  --default_color-set05: #777;
  --font_color-set01: #e60012;
  /* コンテンツ幅 */
  --contents_wide_SS: 375px;
  --contents_wide_S: 960px;
  --contents_wide_default: 1280px;
  --contents_wide_L: 1400px;
  --contents_wide_LL: 1920px;
  --spacing-inline: clamp(20px, 5vw, 40px);
  /* 共通コンテンツ間マージン設定 */
  --contents_margin_SS: 5px;
  --contents_margin_S: 10px;
  --contents_margin_default: 20px;
  --contents_margin_L: 40px;
  --contents_margin_LL: 60px;
  /* 共通角丸設定 */
  --border-radius_S: 3px;
  --border-radius_default: 9px;
  --border-radius_L: 18px;
}

.wrapper {
  max-width: var(--contents_wide_default);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-inline);
  padding-right: var(--spacing-inline);
}

/*============================
　共通設定
============================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  z-index: 1;
  font-feature-settings: "halt";
  font-weight: 500;
}

html,
body {
  height: 100%;
}

body * {
  background-repeat: no-repeat;
  background-position: center center;
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
  width: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:hover {
  transition: 0.3s;
  filter: brightness(120%);
}

/*============================
　グローバルメニュー
============================*/
/* ===== ドロワー仕掛け ===== */
/* メニュー展開時にスクロールを止める */
body.noscroll {
  overflow: hidden;
  height: 100%;
}

/* メニュー部デザインCSS */
#gnav {
  display: block;
  position: fixed;
  top: 0;
  max-width: 450px;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: auto;
  z-index: 1001;
}

.gnav-inner {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 100px 50px 30px 30px;
}

.gnav-inner ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  line-height: 1;
}

.gnav-inner ul li::before {
  display: inline-block;
  content: "";
  width: 60px;
  border-top: 1px solid #e60013;
}

.gnav-inner ul li a {
  color: #e60013;
  font-weight: 600;
  font-size: clamp(1.375rem, -0.466rem + 3.84vw, 2.8125rem);
  font-family: "Zen Maru Gothic", sans-serif;
}

/* 半透明マスクレイヤー */
#wr_closs {
  width: 100%;
  height: 100%;
  position: fixed;
  display: block;
  z-index: 999;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  opacity: 0.8;
}

.main-header-menu {
  cursor: pointer;
  z-index: 1002;
  position: relative;
}

@media screen and (max-width: 767px) {
  .gnav-inner {
    justify-content: center;
  }
  .gnav-inner ul li {
    margin-top: 20px;
  }
  .gnav-inner ul li::before {
    width: 36px;
  }
}
/*============================
  ハック・リセット関連
============================*/
html {
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

/* iPhone safari でのデフォルトアイコンを非表示にする */
details summary {
  list-style: none;
}

/* iPhone safari 特有のデフォルトマーカーを非表示にする */
summary::-webkit-details-marker {
  display: none;
}

/* input・select スタイリングリセット */
input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 1px solid #000;
  border-radius: 0px;
}

i {
  font-style: normal;
}

u {
  font-style: normal;
}

@media screen and (max-width: 767px) {
  _::-webkit-full-page-media,
  _:future,
  :root input,
  _::-webkit-full-page-media,
  _:future,
  :root select,
  _::-webkit-full-page-media,
  _:future,
  :root textarea {
    color: initial !important;
    font-size: initial !important;
  }
}
/*============================
　コンテンツ関連
============================*/
/* ===== レスポンシブ明示指定CSS ===== */
.look_pc {
  display: block;
}

.look_sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .look_pc {
    display: none;
  }
  .look_sp {
    display: block;
  }
}
/*============================
#js_pagetop
============================*/
.pagetop_posision {
  position: relative;
  margin-bottom: -40px;
}

#js_pagetop {
  bottom: 10px;
  display: none;
  opacity: 0;
  position: fixed;
  right: 20px;
  transition: all 600ms;
  z-index: 9001;
}

#js_pagetop.fade {
  animation: fadeIn 0.4s ease-in 0s forwards;
  display: block;
  opacity: 1;
}

@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    display: block;
    opacity: 1;
  }
  1% {
    display: none;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
#js_pagetop a {
  align-items: center;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-color: #e60013;
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  width: clamp(4.375rem, 2.774rem + 3.339vw, 5.625rem);
  aspect-ratio: 1/1;
  flex-direction: column;
  color: #fff;
  line-height: 1;
  font-size: clamp(0.875rem, 0.395rem + 1.002vw, 1.25rem);
}

#js_pagetop a > i {
  display: inline-block;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-rendering: auto;
  width: 12px;
  aspect-ratio: 1/1;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  #js_pagetop {
    bottom: 5px;
    right: 5px;
  }
  #js_pagetop a {
    opacity: 0.9;
  }
  #js_pagetop a > i {
    font-size: 20px;
  }
}/*# sourceMappingURL=common.css.map */