@charset "utf-8";

/*  =============================================================

　　共通モジュール設定

============================================================= */

/*  全体　設定
---------------------------------------------*/

/*  リンク 設定
-------------------------- */

/* -- 動き滑らか -- */
#header a:hover img,
#content a:hover img {
  transition: all 0.2s ease;
}

/*  タイトル・ロゴ・アイコンの文字インデント設定
---------------------------------------------*/


@media screen and (max-width: 768px) {
  
  .subTtl {
    text-shadow:none;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }  
}




/*  アコーディオン設定
---------------------------------------------*/
.acContent {
  margin: 10px auto 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .acContent {
    display: none;
    margin: 0;
    padding:20px 10px;
    background: #270029;
    text-shadow:none;
    font-size: 13px;
    font-size: 1.3rem;
  }
  
  .subTtl.acMenu {
    position: relative;
    padding: 20px 10px;
    border-top: 1px solid #fff;
    background: #38023b;
    cursor: pointer;
  }
  
  .subTtl.acMenu.acLine {
    border-bottom: 1px solid #fff;
  }
  
  .subTtl.acMenu.acLine.active,
  .subTtl.acMenu.active {
    background: #38023b;
    border-bottom: 1px solid #fff;
  }
  
  .subTtl.acMenu:after {
    position: absolute;
    top: 45%;
    right: 10px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #fdfdfd;
    border-right: 2px solid #fdfdfd;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    transition: all 0.4s ease-in-out;
    content: "";
  }
  
  .subTtl.acMenu.active:after {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #fdfdfd;
    border-right: 2px solid #fdfdfd;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
    content: "";
  }  
}

/*  カスタムスクロール設定
---------------------------------------------*/
.boxCustomScroll {
  height: 300px;
  margin-top: 20px;
  margin-bottom: 65px;
  border: 1px solid #cecdce;
  background-color: rgba(51,47,50,0.8);
}

.jspContainer {
  overflow: hidden;
  position: relative;
  width: auto !important; 
}

.jspPane {
  float: left;
  position: absolute;
}

.jspVerticalBar {
  float: right;
  height: 100%;
  z-index: 100;
}

.jspCap {
  display: none;
}

.jspTrack {
  position: absolute;
}

.jspDrag {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  cursor: pointer;
}

/* -- スクロールバー幅 -- */

.boxCustomScroll .jspVerticalBar,
.boxCustomScroll .jspTrack,
.boxCustomScroll .jspDrag {
  width: 12px;
}

/* -- スクロールバー・カラー -- */

/* 背景 */
.boxCustomScroll .jspTrack {
  background: #616161;
}

/* クリック箇所 */
.boxCustomScroll .jspDrag {
  background: #fff;
}

@media screen and (max-width: 768px) {
  .boxCustomScroll {
    height: 300px;
    margin: 10px 10px 0px;
    border: 1px solid #cecdce;
  }  
}