@charset "UTF-8";

/*base*/
*{
  box-sizing: border-box;
}
html{
  /*親のフォントサイズを10pxに*/
  font-size: 62.5%;
}

@media screen and (max-width: 389px) {
  html{
    /*親のフォントサイズを10pxに*/
    font-size: 50%;
  }
  
}

.bg_bk {
  font-family: "游明朝体 Medium", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif!important;
  background-color: #000!important;
  color: #fff;
}
/*font-family*/

/*SPのみ表示時ここから*/
  .pcOnly{
    display: none !important;
  }
/*SPのみ表示時ここまで*/

/*@media screen and (min-width: 767px){
  .spOnly{
    display: none !important;
  }
  .text-center_pc{
    text-align: center;
  }
}
@media screen and (max-width: 767px){
  .pcOnly{
    display: none !important;
  }
  .text-left_sp{
    text-align: left;
  }
}*/
/*margin*/
.mb10{
  margin-bottom: 10px;
}
.mt10{
  margin-top: 10px;
}
.mb20{
  margin-bottom: 20px;
}
.mt20{
  margin-top: 20px;
}
.mb30{
  margin-bottom: 30px;
}
.mt30{
  margin-top: 30px;
}
.mt50{
  margin-top: 50px;
}
.mb50{
  margin-bottom: 50px;
}
.m-30{
  margin-top: 30px;
  margin-bottom: 30px;
}
.m-50{
  margin-top: 50px;
  margin-bottom: 50px;
}
.m-center{
  margin-left: auto;
  margin-right: auto;
}
.sideSpace{
  padding: 0 5%;
  box-sizing: border-box;
}
.max-width{
  max-width: 700px;
}
.oneSection{
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.oneSection img{
  width: 100%;
  height: auto;
  display: block;
}
.imgBlkWrap{
  position: relative;
}

.serif{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.s-serif_an{
  font-family: "Arial", "Helvetica", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
.s-serif_yugo{
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

/*textalign*/
.text-center{
  text-align: center;
}
.text-left,
.text-just{
  text-align: justify;
}
.text-right{
  text-align: right;
}

/*fontsize*/
.f-size-l{
  font-size: 1.8rem;
  letter-spacing: 2px;
  line-height: 1.7;
}
.f-size-m{
  font-size: 1.5rem;
  letter-spacing: 2px;
  line-height: 1.7;
}
.f-size-s{
  font-size: 1.3rem;
  letter-spacing: 2px;
  line-height: 1.7;
}
.f-size-07{
  font-size: 0.7em;
}

.c-gPink{
  color: #dec6bd;
}
.txt_bg-gPink{
  background: linear-gradient(to right, #EB6E6E, #A60ACB);
  padding: 0.2em 0.5em 0.3em;
}

/*text-decoration*/
.line_through{
  text-decoration: line-through;
}
.td_underline{
  text-decoration: underline;
}
.p-events{
  pointer-events: none;
}
/*baseここまで*/