@charset "utf-8";


.link_btn {
  margin: 20px auto;
  width: 280px;
}
.link_btn_inner {
  position: relative;
  display: table;
  width: 220px;
  margin: 0 auto;
  padding: 5px 30px;
  height: 45px;
  border: 2px solid #b71313;
  color: #b71313;
  background-color: transparent;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
.link_btn_inner:hover {
  color: #fff;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
.link_btn_inner:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 1.5px;
  top: 50%;
  left: -100px;
  background: linear-gradient(90deg, #b71313 0%, #b71313 100%);
  transition: 0.2s;
  -webkit-transition: 0.2s;
}
.link_btn_inner:hover:before {
  width: 40px;
  left: -20px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  animation: BtnColor 0.6s ease;
  -webkit-animation: BtnColor 0.6s ease;
  animation-fill-mode: both;
}
.link_btn_inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #b71313;
  transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  z-index: -1;
  transform: rotateY(90deg);
  transform-origin: right;
  -webkit-transform: rotateY(90deg);
  -webkit-transform-origin: right;
}
.link_btn_inner:hover:after {
  transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transform: rotateY(0deg);
  transform-origin: left;
  -webkit-transform: rotateY(0deg);
  -webkit-transform-origin: left;
}
.link_btn_text {
  display: table-cell;
  text-align: center;
  font-size: 18px;
  vertical-align: middle;
}

.ta_center {
  text-align: center;
}

.client .faq_description_title {
  color: #6992ED;
  font-size: 26px;
}
.creator .faq_description_title {
  color: #41B883;
  font-size: 26px;
}
/*  PC  */
@media screen and (min-width: 960px) {

  .faq_description {
    width: 100%;
    padding: 30px 0;
    background-color: #fff;
  }
  .faq_description_gray {
    width: 100%;
    background-color: #fbfbfb;
    border-bottom: 1px solid #ccc;
  }
  .client .faq_inner {
    width: 90%;
    padding: 0px 5%;
    margin: 0 auto;
    border: 2px solid #6992ED;
    border-radius: 15px;
    background-color: #fff;
  }
  .client p.question {
    background: url(/img/faq/question_icon.png) no-repeat 0 0/75px;
    font-size: 22px;
    padding: 40px 0 0 80px;
    color: #6992ED;
  }
  .creator .faq_inner {
    width: 90%;
    padding: 0px 5%;
    margin: 0 auto;
    border: 2px solid #41B883;
    border-radius: 15px;
    background-color: #fff;
  }
  .creator p.question {
    background: url(/img/faq/question_creator_icon.png) no-repeat 0 0/75px;
    font-size: 22px;
    padding: 40px 0 0 80px;
    color: #41B883;
  }
  p.answer {
    background: url(/img/faq/answer_icon.png) no-repeat 0 0/75px;
    font-size: 22px;
    padding: 40px 0 0 80px;
    color: #B71313;
  }
  .faq_inner ul.asterisk {
    padding-left: 80px;
  }

  .flex {
    display: flex;
    align-items: center;
  }
}
/*  tab  */
@media screen and (max-width: 959px) and (min-width: 751px) {
  .client,.creator {
    position: relative;
  }

  .faq_description {
    width: 100%;
    padding: 30px 0;
    background-color: #fff;
  }
  .faq_description_gray {
    width: 100%;
    background-color: #fbfbfb;
    border-bottom: 1px solid #ccc;
  }
  .client .faq_inner {
    width: 90%;
    padding: 0px 5%;
    margin: 0 auto;
    border: 2px solid #6992ED;
    border-radius: 15px;
    background-color: #fff;
    overflow: hidden;
  }
  .client p.question {
    background: url(/img/faq/question_icon.png) no-repeat 0 0/75px;
    font-size: 20px;
    padding: 40px 0 0 80px;
    color: #6992ED;
  }
  .creator .faq_inner {
    width: 90%;
    padding: 0px 5%;
    margin: 0 auto;
    border: 2px solid #41B883;
    border-radius: 15px;
    background-color: #fff;
    overflow: hidden;
  }
  .creator p.question {
    background: url(/img/faq/question_creator_icon.png) no-repeat 0 0/75px;
    font-size: 20px;
    padding: 40px 0 0 80px;
    color: #41B883;
  }
  p.answer {
    background: url(/img/faq/answer_icon.png) no-repeat 0 0/75px;
    font-size: 20px;
    padding: 40px 0 0 80px;
    color: #B71313;
  }
  .link_btn_inner:hover {
    color: #b71313;
  }
  .link_btn_inner:hover:before {
    animation: none;
    -webkit-animation: none;
  }
  .link_btn_inner:hover:after {
    transform: none;
    -webkit-transform: none;
  }
  .client .faq_description_title {
    font-size: 24px;
  }
  .creator .faq_description_title {
    font-size: 24px;
  }

  .flex {
    display: flex;
    align-items: center;
  }
}
/*  SP  */
@media screen and (max-width: 750px) {
  .client,.creator {
    position: relative;
  }
  .faq_description {
    width: 100%;
    padding: 20px 0;
    background-color: #fff;
  }
  .faq_description_gray {
    width: 100%;
    background-color: #fbfbfb;
    border-bottom: 1px solid #ccc;
  }
  .client .faq_inner {
    width: 100%;
    padding: 0px 5%;
    border: 2px solid #6992ED;
    border-radius: 15px;
    background-color: #fff;
    overflow: hidden;
  }
  .client p.question {
    background: url(/img/faq/question_icon.png) no-repeat 0 0/15%;
    font-size: 18px;
    padding: 8% 0 0 17%;
    color: #6992ED;
  }
  .creator .faq_inner {
    width: 100%;
    padding: 0px 5%;
    border: 2px solid #41B883;
    border-radius: 15px;
    background-color: #fff;
    overflow: hidden;
  }
  .creator p.question {
    background: url(/img/faq/question_creator_icon.png) no-repeat 0 0/15%;
    font-size: 18px;
    padding: 8% 0 0 17%;
    color: #41B883;
  }
  p.answer {
    background: url(/img/faq/answer_icon.png) no-repeat 0 0/15%;
    font-size: 18px;
    padding: 8% 0 0 17%;
    color: #B71313;
  }
  .link_btn_inner {
    width: 180px;
    padding: 0 10px;
  }
  .link_btn_inner:hover {
    color: #b71313;
  }
  .link_btn_inner:hover:before {
    animation: none;
    -webkit-animation: none;
  }
  .link_btn_inner:hover:after {
    background-color: transparent;
    transform: none;
    -webkit-transform: none;
  }
  .link_btn_inner:before {
    width: 20px;
    height: 1px;
    left: -10px;
  }
  .link_btn_inner .link_btn_text {
    font-size: 14px;
  }
  .client .faq_description_title {
    font-size: 22px;
  }
  .creator .faq_description_title {
    font-size: 22px;
  }
  .faq_inner ul.asterisk {
    padding-left: 17%;
  }

  .flex {
    display: flex;
    align-items: center;
  }
}

@-moz-keyframes BtnColor {
  0% {
    background: linear-gradient(90deg, #b71313 0%, #b71313 100%);
  }
  100% {
    background: linear-gradient(90deg, #b71313 0%, #b71313 50%, #fff 50%, #fff 100%);
  }
}
@-webkit-keyframes BtnColor {
  0% {
    background: linear-gradient(90deg, #b71313 0%, #b71313 100%);
  }
  100% {
    background: linear-gradient(90deg, #b71313 0%, #b71313 50%, #fff 50%, #fff 100%);
  }
}
@-o-keyframes BtnColor {
  0% {
    background: linear-gradient(90deg, #b71313 0%, #b71313 100%);
  }
  100% {
    background: linear-gradient(90deg, #b71313 0%, #b71313 50%, #fff 50%, #fff 100%);
  }
}
@keyframes BtnColor {
  0% {
    background: linear-gradient(90deg, #b71313 0%, #b71313 100%);
  }
  100% {
    background: linear-gradient(90deg, #b71313 0%, #b71313 50%, #fff 50%, #fff 100%);
  }
}