@charset "utf-8";
/* CSS Document */ * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body a, a:visited, a:hover, a:active {
  color: inherit;
  text-decoration: none;
  opacity: 1;
}
/* PC横並び スマホ縦組み コンテンツ */
.flex_cont {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.align-center {
  align-items: center;
}
.cont_reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .flex_cont {
    display: block;
  }
  .cont_reverse {
    flex-direction: row;
  }
}
/* 上下余白 クリアランス */
.clt-10 {
  margin-top: 10px !important;
}
.clb-10 {
  margin-bottom: 10px !important;
}
.clt-20 {
  margin-top: 20px !important;
}
.clb-20 {
  margin-bottom: 20px !important;
}
.clt-30 {
  margin-top: 30px !important;
}
.clb-30 {
  margin-bottom: 30px !important;
}
.clb-40 {
  margin-bottom: 40px !important;
}
.clt-60 {
  margin-top: 60px !important;
}
.clb-60 {
  margin-bottom: 60px !important;
}
.clt-90 {
  margin-top: 90px !important;
}
.clb-90 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 767px) {
  .clt-10 {
    margin-top: 5px !important;
  }
  .clb-10 {
    margin-bottom: 5px !important;
  }
  .clt-20 {
    margin-top: 10px !important;
  }
  .clb-20 {
    margin-bottom: 10px !important;
  }
  .clt-30 {
    margin-top: 15px !important;
  }
  .clb-30 {
    margin-bottom: 30px !important;
  }
  .clb-40 {
    margin-bottom: 20px !important;
  }
  .clt-60 {
    margin-top: 30px !important;
  }
  .clb-60 {
    margin-bottom: 30px !important;
  }
  .clt-90 {
    margin-top: 45px !important;
  }
  .clb-90 {
    margin-bottom: 45px !important;
  }
}
/* hidden */
@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none !important;
  }
}
/* pc版クリアランス */
.cl_pc150 {
  margin-bottom: 150px
}
.cl_pc120 {
  margin-bottom: 120px
}
.cl_pc100 {
  margin-bottom: 100px;
}
.cl_pc80 {
  margin-bottom: 80px;
}
.cl_pc50 {
  margin-bottom: 50px;
}
.cl_pc30 {
  margin-bottom: 30px;
}
@media screen and (max-width: 834px) {
  .cl_pc150 {
    margin-bottom: 75px;
  }
  .cl_pc120 {
    margin-bottom: 60px;
  }
  .cl_pc100 {
    margin-bottom: 50px;
  }
  .cl_pc80 {
    margin-bottom: 40px;
  }
  .cl_pc50 {
    margin-bottom: 25px;
  }
  .cl_pc30 {
    margin-bottom: 15px;
  }
}
/* smp版クリアランス */
.cl_sm10 {
  margin-bottom: 5px;
}
.cl_sm20 {
  margin-bottom: 10px;
}
.cl_sm40 {
  margin-bottom: 20px;
}
@media screen and (max-width: 834px) {
  .cl_sm10 {
    margin-bottom: 10px;
  }
  .cl_sm20 {
    margin-bottom: 20px;
  }
  .cl_sm40 {
    margin-bottom: 40px;
  }
}
/* 固定クリアランス */
.cl_10 {
  margin-bottom: 10px;
}
.cl_30 {
  margin-bottom: 30px;
}
/* スマホ版改行 */
br.brlong {
  display: none;
  width: 0;
  height: 0;
  visibility: hidden;
  content: "";
  font-size: 0;
}
@media screen and (max-width: 834px) {
  br.brlong {
    display: block;
  }
}