/************************
　　　
ローディング画面

************************/

/*----------------------
レイアウト
----------------------*/
#ld_wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #3e3e3e;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#ld_logo_wrapper>.ld_logo {
  margin: 0 auto;
  width: 28vw;
}

.ld_msg_wrapper {
  color: #fff;
  margin: 0 auto;
  margin-top: 3vw;
  font-size: 2vw;
}

.ldbg {
  display: none;
}

#loading.ld_comp .ldbg {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #da419a;
}

@media screen and (max-width: 450px) {
  #ld_logo_wrapper>.ld_logo {
    width: 60vw;
  }

  .ld_msg_wrapper {
    margin: 0 auto;
    margin-top: 5vw;
    font-size: 5vw;
  }
}

/*----------------------
アニメーション
----------------------*/
#ld_logo_wrapper>.ld_logo {
  animation: slide_in .8s ease-in-out;
}

.slide_in {
  opacity: 0;
  transform: translateX(-.8rem);
  transition: all .8s .6s ease-in-out;
}

.slide_in.active {
  opacity: 1;
  transform: translateX(0);
}

@keyframes slide_in {
  0% {
    opacity: 0;
    transform: translateX(-.8rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

#loading.ld_comp .ldbg {
  animation: page_slide 1.2s forwards ease-in-out;
}

@keyframes page_slide {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

.ini_op {
  opacity: 0;
  transition: all 1s 0.8s ease-in-out;
}

.ini_op.active {
  opacity: 1;
}

/************************
　　　
トップページのコンセプト

************************/

.fv {
  position: relative;
  margin-bottom: 20vw;
}

.fv > .fv_video_wrapper {
  width: 100%;
  height: 100vh;
}

.fv>.fv_video_wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url();
}

.fv>.fv_video_wrapper > video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.fv > .fv_msg_wrapper {
  position: absolute;
  top: 30vw;
  left: 7vw;
  color: #fff;
}

.fv >.fv_msg_wrapper > .fv_copy_title {
  font-size: 2.4vw;
  margin-bottom: 1.5vw;
}

.fv> .fv_msg_wrapper> .fv_copy {
  font-size: 1.1vw;
}


@media screen and (max-width: 450px) {
  .fv>.fv_msg_wrapper {
    top: 90vw;
    left: 7vw;
  }

  .fv>.fv_msg_wrapper>.fv_copy_title {
    font-size: 9.2vw;
    margin-bottom: 6vw;
    line-height: 12vw;
  }

  .fv>.fv_msg_wrapper>.fv_copy {
    font-size: 4vw;
  }
}

/*
 * @parts：コンセプト全体
 * @design：横の余白無し、画像とテキストは横並び
*/
#tp_concept_inner {
  width: 100%;
  display: flex;
}

@media screen and (max-width: 450px) {
  #tp_concept_inner {
    /* @design：スマホでは画像とテキストは縦並び */
    display: block;
  }
}



/*
 * @parts：コンセプト画像
 * @design：背景画像に指定、画像のトリミングと幅高さを指定、繰り返しはしない
*/
#tp_concept_img {
  background-image: url(../../image/toppage/concept.jpg);
  background-size: 100%;
  background-position: 0% 30%;
  width: 56.61%;
  height: 42.97vw;
  ;
  object-fit: cover;
  object-position: 100% 100%;
  background-repeat: no-repeat;
}

@media screen and (max-width: 450px) {
  #tp_concept_img {
    /* @design：スマホの時は横幅いっぱいに */
    width: 100%;
    height: 75.75vw;
  }
}



/*
 * @parts：コンセプトテキスト全体
 * @design：上と左に余白、横幅を指定
*/
#tp_concept_textbox {
  padding-top: 4.17%;
  padding-left: 7.81%;
  width: 43.39%;
  ;
}

@media screen and (max-width: 450px) {
  #tp_concept_textbox {
    padding-top: 10%;
    padding-left: 7.5%;
    /* @design：スマホの時は横幅いっぱいに */
    width: 100%;
  }
}



/*
 * @parts：コンセプトテキストのタイトル
 * @design：文字サイズと、下の余白
*/
#tp_concept_text_title {
  font-size: 1.88vw;
  padding-bottom: 9.6%;
}

@media screen and (max-width: 450px) {
  #tp_concept_text_title {
    font-size: 4vw;
    padding-bottom: 7.5%;
  }
}



/*
 * @parts：コンセプトテキストの文章
 * @design：文字サイズ
*/
#tp_concept_text1,
#tp_concept_text2,
#tp_concept_text3 {
  font-size: 1.25vw;
}

@media screen and (max-width: 450px) {

  #tp_concept_text1,
  #tp_concept_text2,
  #tp_concept_text3 {
    font-size: 3vw;
  }
}

/*
 * @parts：コンセプトテキストの2番目と３番目の文章
 * @design：上の余白
*/
#tp_concept_text2,
#tp_concept_text3 {
  padding-top: 7.2%;
}

@media screen and (max-width: 450px) {

  #tp_concept_text2,
  #tp_concept_text3 {
    padding-top: 7.5%;
  }
}

/************************
　　　
トップページのピラティスについて

************************/

/*
 * @parts：ピラティスについて全体
 * @design：上に余白をとる、グレーの背景の基準relativeとする
*/
#tp_about_pilates_section {
  margin-top: 13.5416666vw;
  margin-bottom: 11.25vw;
  width: 100%;
  position: relative;
}

@media screen and (max-width: 450px) {
  #tp_about_pilates_section {
    margin-top: 30vw;
    margin-bottom: 0;
  }
}



/*
 * @parts：ピラティスについて　インナー
 * @design：横の余白無し、画像とテキストは横並び
*/
#tp_about_pilates_inner {
  width: 100%;
  display: flex;
  /*  FlexBoxで横一列に並んだボックスの左右を入れ替える*/
  flex-direction: row-reverse;
}

@media screen and (max-width: 450px) {
  #tp_about_pilates_inner {
    /* @design：スマホでは画像とテキストは縦並び */
    display: block;
  }
}



/*
 * @parts：ピラティスについて　テキスト全体
 * @design：上下左右に余白、横幅を指定
*/
#tp_about_pilates_textbox {
  padding-top: 4.17%;
  padding-left: 7.81%;
  padding-right: 5.21%;
  width: 55.47%;
  ;
}

@media screen and (max-width: 450px) {
  #tp_about_pilates_textbox {
    padding-top: 9.75%;
    padding-left: 7.5%;
    padding-right: 8.75%;
    padding-bottom: 30%;
    /* @design：スマホの時は横幅いっぱいに */
    width: 100%;
  }
}




/*
 * @parts：ピラティスについて　テキストタイトル
 * @design：上の余白、文字の大きさを指定
*/
#tp_about_pilates_text_title {
  padding-top: 14.11%;
  font-size: 1.5625vw;
}

@media screen and (max-width: 450px) {
  #tp_about_pilates_text_title {
    padding-top: 0;
    padding-bottom: 10%;
    font-size: 3.5vw;
  }
}




/*
 * @parts：ピラティスについて　テキスト
 * @design：上の余白、文字の大きさを指定
*/
#tp_about_pilates_text1,
#tp_about_pilates_text2 {
  padding-top: 7.98%;
  font-size: 1.25vw;
}

@media screen and (max-width: 450px) {

  #tp_about_pilates_text1,
  #tp_about_pilates_text2 {
    padding-top: 0;
    font-size: 3vw;
  }
}


/*
 * @parts：ピラティスについて　テキスト1
 * @design：上に余白をつける
*/
@media screen and (max-width: 450px) {
  #tp_about_pilates_text1 {
    padding-bottom: 7.5%;
  }
}




/*
 * @parts：ピラティスについて　ボタン
 * @design：上に余白をつける
*/
#tp_about_pilates_btn {
  margin-top: 3.125vw;
  justify-content: center;
  display: flex;
}

@media screen and (max-width: 450px) {
  #tp_about_pilates_btn {
    margin-top: 9.75vw;
    font-size: 3vw;
  }
}

/* ボタンの基本スタイル */
.btn a {
  position: relative;
  display: block;
  width: 26.63%;
  padding: 1vw 0;
  background-color: #fff;
  font-size: 1.25vw;
  font-family: "YuMincho";
  color: #000;
  text-decoration: none;
  text-align: center;
  transition: .2s;
  box-sizing: border-box;
}

@media screen and (max-width: 450px) {
  .btn a {
    width: 45.37%;
    font-size: 3vw;
    padding: 2.5vw 0;
  }
}


/* スライドする背景色のスタイル */
.btn-slide-horizontal a {
  border: 1px solid #000;
  z-index: 1;
}

.btn-slide-horizontal a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  transform-origin: right top;
  transform: scaleX(0);
  transition: transform .2s ease;
  z-index: -1;
}

/* ホバー時のスタイル */
.btn-slide-horizontal a:hover {
  color: #fff;
  ;
}


.btn-slide-horizontal a:hover::before {
  transform-origin: left top;
  transform: scaleX(1);
  background-color: #000;
}



/* * @parts：ピラティスとは画像
* @design：背景画像に指定、画像のトリミングと幅高さを指定、繰り返しはしない
*/
#tp_about_pilates_img {
  background-image: url(../../image/toppage/pilates.jpg);
  background-size: 100%;
  background-position: 40% 30%;
  width: 40.63%;
  height: 44.32vw;
  object-fit: cover;
  object-position: 100% 100%;
  background-repeat: no-repeat;
  margin-right: 3.91%;
}

@media screen and (max-width: 450px) {
  #tp_about_pilates_img {
    width: 91.25%;
    height: 96.25vw;
  }
}



/* * @parts：ピラティスとは背景グレー
* @design：absoluteで浮かせて、写真の後ろへ
*/
#tp_about_pilates_bg_gray {
  position: absolute;
  width: 40%;
  height: 44.42vw;
  background-color: #ebebeb;
  top: -5.208vw;
  left: 60%;
  z-index: -10;
}

@media screen and (max-width: 450px) {
  #tp_about_pilates_bg_gray {
    position: absolute;
    width: 90%;
    height: 96.25vw;
    background-color: #ebebeb;
    top: 15vw;
    left: 10%;
    z-index: -10;
  }
}



/* セクションタイトルデザイン（display-flexで横並びの要素内の場合） */
/* トップページ　ピラティスとはの場合(PC) */
.section_title {
  display: flex;
  width: 100%;
}

@media screen and (max-width: 450px) {

  /* .section_title,
  .section_title_en,
  .section_title_ja {
    display: none;
  } */

  #tp_about_pilates_section_title{
    display: none;
  }
}



/* セクションタイトルデザイン（display-flexで横並びの要素内の場合） */
/* トップページ　ピラティスとはの場合(SP) */
#tp_about_pilates_section_title_sp {
  display: none;
}

@media screen and (max-width: 450px) {
  #tp_about_pilates_section_title_sp {
    display: flex;
    padding-bottom: 20%;
    padding-left: 7.5%;
    align-items: end;
  }
}


.section_title_en {
  margin-right: 7.24%;
  align-items: end;
  display: flex;
}


.section_title_en_sp {
  margin-right: 5.75%;
}


.section_title_en p {
  font-size: 0.9375vw;
  font-family: "Source Serif 4";
  font-weight: 300;
  font-style: italic;
  align-items: end;
}

.section_title_en_sp p {
  font-size: 2.5vw;
  font-family: "Source Serif 4";
  font-weight: 300;
  font-style: italic;
  /* margin-right: 5.75%; */
  align-items: end;
  /* display: flex; */
}


.section_title_ja p {
  font-size: 1.875vw;
  font-family: "YuMincho", "sans-serif";
}


.section_title_ja_sp p {
  font-size: 4vw;
  font-family: "YuMincho", "sans-serif";
}

/************************
　　　
トップページの体験レッスン

************************/


/*
 * @parts：体験レッスン　背景画像
 * @design：画面幅いっぱいにして黒っぽくする
*/
.img_black_bg_img {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../image/toppage/lesson.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 450px) {
  .img_black_bg_img {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../image/toppage/lesson_sp.jpg);
    background-size: 110%;
    background-position: 90% 30%;
  }
}



/*
 * @parts：体験レッスン全体
 * @design：余白をとる
*/
#tp_trial_lesson {
  width: 100%;
  height: 41.71875vw;
  padding-top: 4.95%;
  padding-right: auto;
  padding-bottom: 6.77%;
  padding-left: 7.81%;
  margin-bottom: 9.375vw;
}

@media screen and (max-width: 450px) {
  #tp_trial_lesson {
    width: 100%;
    height: 135.75vw;
    padding-top: 15%;
    padding-right: auto;
    padding-bottom: 15%;
    padding-left: 7.75%;
    margin-bottom: 20vw;
  }
}

@media screen and (max-width: 450px) {
  #tp_trial_lesson_title {
    display: flex;
    align-items: end;
  }

  #tp_trial_lesson_title_en {
    display: block;

  }

  #tp_trial_lesson_title_en p {
    font-size: 2.5vw;

  }

  #tp_trial_lesson_title_ja {
    display: block;
  }

  #tp_trial_lesson_title_ja p {
    font-size: 4vw;
  }
}




/*
 * @parts：体験レッスン全体
 * @design：余白をとる
*/
#tp_trial_lesson_textbox {
  color: #fff;
  font-family: "YuMincho";
}

/* rpの改行はなくす */
.br_rp {
  display: none;

}

@media screen and (max-width: 450px) {

  /* pcの改行はなくす */
  br {
    display: none;
  }

  /* spの改行をする */
  .br_rp {
    display: block;
  }
}



/*
 * @parts：体験レッスン テキストタイトル
 * @design：文字の大きさ
*/
#tp_trial_lesson_text_title {
  font-size: 1.5625vw;
  padding-top: 5.21%;
}

@media screen and (max-width: 450px) {
  #tp_trial_lesson_text_title {
    font-size: 3.5vw;
    padding-top: 15%;
  }
}




/*
 * @parts：体験レッスン テキスト
 * @design：文字の大きさ
*/
#tp_trial_lesson_text {
  padding-top: 3.13%;
  line-height: 1.75;
  font-size: 1.25vw;
}

@media screen and (max-width: 450px) {
  #tp_trial_lesson_text {
    padding-top: 6.75%;
    line-height: 1.75;
    font-size: 3vw;
  }
}



/*
 * @parts：体験レッスン 二つのボタンを囲む
 * @design：上の余白　横並びにする
*/
#trial_lesson-btn_wrapper {
  padding-top: 5.21%;
  display: flex;
}

@media screen and (max-width: 450px) {
  #trial_lesson-btn_wrapper {
    padding-top: 15.25%;
    /* スマホの時は縦並び  画面中央に寄せる*/
    display: block;
    margin-left: -7.75%;
  }
}



/*
 * @parts：体験レッスン ボタン
 * @design：幅とホバーした際の時間を指定
*/
.trial_lesson_btn {
  transition: .2s;
  width: 19.32%;
}

@media screen and (max-width: 450px) {
  .trial_lesson_btn {
    transition: .2s;
    width: 60.7%;
    margin: 0 auto;
  }
}



/*
 * @parts：体験レッスン ボタン装飾
 * @design：ボタンの形を指定
*/
.trial_lesson_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 0.125em solid #fff;
  border-radius: 50px;
  font-size: 0.8333vw;
  text-decoration: none;
  text-align: center;
  width: 100%;
  padding: 1vw;
}

@media screen and (max-width: 450px) {
  .trial_lesson_btn a {
    font-size: 3vw;
    padding: 3vw;
  }
}



/* * @parts：体験レッスン ボタン　ホバー */
/* * @design：ボタンをホバーしたらふわっと拡大する */
.trial_lesson_btn:hover {
  transform: scale(1.1, 1.1);
}



/* * @parts：体験レッスン 一つ目のボタン*/
/* * @design：pcの時は右に余白 */
#trial_lesson_btn1 {
  margin-right: 4.17%;
}

@media screen and (max-width: 450px) {
  #trial_lesson_btn1 {
    margin: 0 auto;
  }
}



/* * @parts：体験レッスン 一つ目のボタン　文字*/
/* * @design：文字色を白に */
#trial_lesson_btn1 span {
  color: #fff;
}



/* * @parts：体験レッスン 二つ目のボタン*/
/* * @design：背景は白　輪郭丸く */
#trial_lesson_btn2 {
  background-color: #fff;
  border-radius: 50px;
  cursor: pointer;
}

@media screen and (max-width: 450px) {
  #trial_lesson_btn2 {
    /* スマホの時は上に余白 */
    margin-top: 5%;
  }
}



/* * @parts：体験レッスン 二つ目のボタン　文字*/
/* * @design：文字色を黒に */
#trial_lesson_btn2 span {
  color: #000;
}


/* * @parts：体験レッスン 一つ目のボタン　アイコン*/
/* * @中央よせ */
#trial_lesson_btn1_icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
}


/* * @parts：体験レッスン 一つ目のボタン　アイコン外丸*/
/* * @design：配置を指定 */
#trial_lesson_btn1_icon::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -50%;
  margin: auto;
  content: "";
  vertical-align: middle;
}

@media screen and (max-width: 450px) {
  #trial_lesson_btn1_icon::before {
    right: -60%;
  }
}



/* * @parts：体験レッスン 一つ目のボタン　アイコン外丸*/
/* * @design：形を指定 */
#trial_lesson_btn1 ::before {
  box-sizing: border-box;
  width: 21.35%;
  height: 100%;
  border: 0.125em solid #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}


/* * @parts：体験レッスン 一つ目のボタン　アイコン　中の＞*/
/* * @design：配置を指定 */
#trial_lesson_btn1_icon::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -41%;
  margin: auto;
  content: "";
  vertical-align: middle;
}

@media screen and (max-width: 450px) {
  #trial_lesson_btn1_icon::after {
    right: -51%;
  }
}



/* * @parts：体験レッスン 一つ目のボタン　アイコン　中の＞*/
/* * @design：形を指定 */
#trial_lesson_btn1 ::after {
  width: 0.375em;
  height: 0.375em;
  border-top: 0.125em solid #fff;
  border-right: 0.125em solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}




/* * @parts：体験レッスン 二つ目のボタン　アイコン*/
/* * @中央よせ */
#trial_lesson_btn2_icon {
  position: relative;
  display: inline-block;
  padding: 0;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
}



/* * @parts：体験レッスン 二つ目のボタン　アイコン外丸*/
/* * @design：配置を指定 */
#trial_lesson_btn2_icon::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -30%;
  margin: auto;
  content: "";
  vertical-align: middle;
}

@media screen and (max-width: 450px) {
  #trial_lesson_btn2_icon::before {
    right: -20%;
  }
}




/* * @parts：体験レッスン 二つ目のボタン　アイコン外丸*/
/* * @design：形を指定 */
#trial_lesson_btn2 ::before {
  box-sizing: border-box;
  width: 13.64%;
  height: 100%;
  border: 0.125em solid #000;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}




/* * @parts：体験レッスン 二つ目のボタン　アイコン　中の＞*/
/* * @design：配置を指定 */
#trial_lesson_btn2_icon::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -24%;
  margin: auto;
  content: "";
  vertical-align: middle;
}

@media screen and (max-width: 450px) {
  #trial_lesson_btn2_icon::after {
    right: -14%;
  }
}

/************************

トップページの料金ページバナー

************************/

/* * @parts：体験レッスン 二つ目のボタン　アイコン　中の＞*/
/* * @design：形を指定 */
#trial_lesson_btn2 ::after {
  width: 0.375em;
  height: 0.375em;
  ;
  border-top: 0.125em solid #000;
  border-right: 0.125em solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}



.faq_about_top {
  font-family: "Source Serif 4";
  color: white;
  position: absolute;
  top: 55%;
  left: 48%;
  transform: translate(-100%, -50%);
  font-size: 3.125vw;
  z-index: 1;
  margin: 0;
}

@media screen and (max-width: 450px) {
  .faq_about_top {
    font-size: 4.5vw;
    top: 50%;
    left: 45%;
  }
}


.faq_about_top_jp {
  font-family: "YuMincho";
  color: white;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%, );
  font-size: 1.875vw;
  z-index: 1;
}

@media screen and (max-width: 450px) {
  .faq_about_top_jp {
    font-size: 3vw;
    top: 40%;
    left: 50%;
  }
}



.price_banner {
  position: relative;
  overflow: hidden;
  height: 15.625vw;
}

@media screen and (max-width: 450px) {
  .price_banner {
    height: 20vw;
  }
}


.price_banner:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: url("../../image/toppage/price.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  transition: all .3s ease-out;
  cursor: pointer;
}

.price_banner:hover:after {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/************************

トップページのよくある質問ページバナー

************************/

.faq_about_top {
  font-family: "Source Serif 4";
  color: white;
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-100%, -50%);
  font-size: 3.125vw;
  z-index: 1;
}
@media screen and (max-width: 450px) {
  .faq_about_top {
    font-size: 4.5vw;
    top: 50%;
    left: 45%;
  }
}



.faq_about_top_jp {
  font-family: "Yumincho";
  color: white;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%, );
  font-size: 1.875vw;
  z-index: 1;
}
@media screen and (max-width: 450px) {
  .faq_about_top_jp {
    font-size: 3vw;
    top: 40%;
    left: 50%;
  }
}


.faq_banner {
  margin-top: 0.20833333vw;
  margin-bottom: 10.2604166vw;
  position: relative;
  overflow: hidden;
  height: 15.625vw;
}

@media screen and (max-width: 450px) {
  .faq_banner {
    margin-top: 0.5vw;
    margin-bottom: 20vw;
    height: 20vw;
  }
}

.faq_banner:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: url("../../image/toppage/faq.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  transition: all .3s ease-out;
  cursor: pointer;
}

.faq_banner:hover:after {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}