@charset "UTF-8";
@media (max-width: 768px){
  body {
    font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    -webkit-text-size-adjust: 100%;
    margin: 0px; 
    padding: 0px;
    background: none;
    height: 100%;
    overflow: scroll;
    background-color: #000000;
    -ms-text-size-adjust: 100%;
  }
  body::before {
    background: url("/assets/img/index/bg/bg_08.webp") repeat center top;
    background-size: cover;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
    content: "";
    z-index: -1;
    opacity: .7;
  }
  img {
    margin: 0;
    padding: 0;
    vertical-align: bottom;
    border: none;
  }
  .body_container {
    overflow: hidden !important;
  }

  /*
  //カテゴリバー背景
  */
  .category_bar_bg {
    position: relative;
    background: url("/assets/img/common/category/bar/cat_bar_bg_0909.webp") no-repeat center top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    filter: drop-shadow(0px 5px 1px rgb(0, 0, 0,0.4));
  }
  .opt_category_bar_bg {
    position: relative;
    width: 100%;
    top: -60px;
    filter: drop-shadow(0px 5px 1px rgb(0, 0, 0,0.4));
  }

  /*
  //カテゴリ背景
  */
  .category_btn-bg {
    background: url("/assets/img/common/category/bg/btn_bg_15.webp") repeat center top;
    background-size: cover;
  }

  /*
  //ポップアップ
  */
  .popup-overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .popup-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .popup-content img {
    max-width: 80%;
    height: auto;
    border-radius: 30px;
  }
  .close-btn {
    display: block;
    width: 80%;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 10px auto 0 auto;
    padding: 12px 0px 10px 0;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 7px;
    cursor: pointer;
  }

  /*
  //スクロールフェード
  */
  .js-fade {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 1.5s,visibility 1.5s, transform 1.5s;
  }

  .scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }

  /*
  //影
  */
  .shadow {
    filter: drop-shadow(0px 5px 1px rgb(0, 0, 0,0.4));
  }


  /*
  //ローディング画面
  */
  .loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 99;
  }
  
  .loading.loaded {
    transition: all 0.5s linear;
    opacity: 0;
    visibility: hidden;
  }



}