@charset "UTF-8";

/*==========================================================================
  Common
==========================================================================*/

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #000;
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
/** フォームリセット **/
input,
button,
textarea,
select,
submit {
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wrap {
  margin: 0 auto;
  width: 90%;
}


/* recaptcha */
.grecaptcha-badge {
  bottom: 80px !important;
  z-index: 99999!important;
}
.wpcf7 form .wpcf7-response-output {
  display: none;
}


/* animation */
.kirakira {
  opacity: 0.6;
  animation: 2s flash linear infinite;
}
@keyframes flash {
	30% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}
.action {
  opacity: 0.3;
  transition: 3s;
}
.action02 {
  opacity: 0;
  transition: 4s;
  transform: initial !important;
}
.action02.in {
  opacity: 1;
}
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}
.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}




.st0{
  stroke:#fff;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 0.5;
  -webkit-animation: hello 2s ease-in 0s;
  animation: hello 2s ease-in 0s;
}
@-webkit-keyframes hello {
  0% {
    stroke-dashoffset: 2000;
    fill:transparent;
  }
  40% {
    stroke-dashoffset: 2000;
    fill:transparent;
  }
  50% {
    fill:transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill:#fff;
  }
}

.st1{
  stroke:#2572a7;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 1;
  -webkit-animation: hello1 4s ease-in 0s;
  animation: hello1 4s ease-in 0s;
}
@-webkit-keyframes hello1 {
  0% {
    stroke-dashoffset: 2000;
    fill:transparent;
  }
  40% {
    stroke-dashoffset: 2000;
    fill:transparent;
  }
  50% {
    fill:transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill:#2572a7;
  }
}


/* haeader */
#header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px;
  width: 100%;
  z-index: 10;
  transition: .3s;
}
.fixed {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 12px 20px !important;
}
.header_logo {
  margin: 0;
}
.header_mail {
  margin: 0;
}
.header_mail a {
  background-color: #4FF4FF;
  border-radius: 50%;
  display: inline-block;
  padding: 10px;
}
.header_mail img {
  margin-bottom: 2px;
}

/* トップへ戻る */
.pagetop {
  display: none;
  position: fixed;
  bottom: 5px;
  right: 5px;
  margin: 0;
  z-index: 20;
}
.pagetop a {
  display: block;
  background-color: #ccc;
  text-align: center;
  color: #222;
  font-size: 15px;
  text-decoration: none;
  padding: 15px 20px;
  filter:alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}
.pagetop a:hover {
  background-color: #b2d1fb;
  color: #fff;
}

/* main_wrap */
.main_wrap {
  background-image: url(../img/lp/main_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
.main_block {
  padding: 180px 0 150px;
  margin: 0 auto;
  max-width: 595px;
  width: 90%;
}
.main_title {
  display: inline-block;
  margin-bottom: 50px;
}
.main_title svg {
  width: 100%;
}
.main_txt {
  font-size: 25px;
}
.main_subtxt {
  font-size: 24px;
  font-family: "KoHo", sans-serif;
  font-weight: 600;
  font-style: normal;
  /* opacity: .6; */
  margin-bottom: 100px;
}
.main_list {
  display: flex;
  justify-content: center;
  margin: 0;
  position: relative;
  z-index: 2;
}
.main_list_block {
  opacity: 0;
  margin-right: 4%;
  width: 25.5%;
}
.main_list_block:last-child {
  margin-right: 0;
}
.delay-time02{
  animation-delay: 0.2s;
}
.delay-time04{
  animation-delay: 0.4s;
}
.fadeUp.scroll-in {
  animation-name:fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
  }
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
      transform: translateY(80px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }



/* support_wrap */
.support_wrap {
  padding-top: 400px;
  background-image: url(../img/lp/support_bg.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 50%;
  margin-top: -400px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.title {
  font-size: 40px;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
}
.title::before {
  content: "";
  width: 5px;
  height: 50px;
  background: linear-gradient(to bottom, #6DFFFF, #FF39DF);
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform:skewX(-20deg);
}
.title_sub {
  border-bottom: 1px solid;
  display: inline-block;
  font-size: 24px;
  margin-bottom: 30px;
}
.support_photo_block {
  display: flex;
  position: relative;
}
.support_photo_block::before {
  content: "";
  background-image: url(../img/lp/support_title.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 30%;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-200px, 0);
  transition: 1s;
  opacity: 0;
}
.support_photo_block.in::before {
  opacity: 1;
  transform: translate(0, 0);
}
.support_photo {
  margin-bottom: 0;
  width: calc(100% / 3);
}
.support_photo:first-child {
  margin-top: 130px;
}
.support_photo:nth-child(3) {
  margin-top: 65px;
}
.support_photo img {
  width: 100%;
}
.support_photo figcaption {
  font-size: 24px;
  margin-top: 20px;
  text-align: center;
}

/* installation_wrap */
.installation_wrap {
  background-image: url(../img/lp/installation_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 400px;
  position: relative;
  margin-top: -230px;
  overflow: hidden;
}
.installation_wrap::after {
  content: "";
  background-image: url(../img/lp/installation_title.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 711px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translate(200px, 0);
  transition: 1s;
  opacity: 0;
}
.installation_wrap.in::after {
  opacity: 1;
  transform: translate(0, 0);
}
.installation_img {
  margin: 0 auto 50px;
  max-width: 1105px;
  position: relative;
  width: 90%;
}
.installation_txt li {
  font-size: 13px;
  margin-bottom: 8px;
}
.installation_txt li:last-child {
  margin-bottom: 0;
}
.installation_txt {
  max-width: 800px;
  margin: 0 auto;
}


/* img_wrap */
.img_wrap {
  background-image: url(../img/lp/img_wrap_bg.png);
  background-repeat: no-repeat;
  background-position: top left;
  padding-top: 440px;
  margin-top: -300px;
  position: relative;
}
.img_wrap .title::before {
  content: none;
}
.img_block {
  display: flex;
  flex-wrap: wrap;
}
.img_box {
  position: relative;
  width: calc(100% / 4);
}
.img_box img {
  width: 100%;
}
.img_photo {
  margin: 0;
}
.img_txt {
  position: absolute;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  padding: 20px 5%;
  margin: 0;
  width: 100%;
}
.img_txt dt {
  font-size: 18px;
  margin-bottom: 10px;
}
.img_txt dd {
  font-size: 14px;
  margin: 0;
}


/* know-how_wrap */
.know-how_wrap {
  padding-top: 180px;
  position: relative;
  background-image: url(../img/lp/know-how_bg.png);
  background-repeat: no-repeat;
  background-position: center right;
  overflow: hidden;
}
.know-how_wrap::before {
  content: "";
  background-image: url(../img/lp/know-how_title.svg);
  background-repeat: no-repeat;
  background-position: top left;
  width: 768px;
  height: 40px;
  position: absolute;
  top: 60px;
  left: 0;
  transform: translate(-200px, 0);
  transition: 1s;
  opacity: 0;
}
.know-how_wrap.in::before {
  opacity: 1;
  transform: translate(0, 0);
}
.know-how_block {
  display: flex;
  flex-wrap: wrap;
  max-width: 1170px;
  margin: 0 auto;
}
.know-how_box {
  margin-right: 6.6%;
  margin-bottom: 50px;
  width: 20%;
}
.know-how_box:nth-child(4n) {
  margin-right: 0;
}
.know-how_icon {
  background-color: #000;
  width: 100%;
  height: 215px;
  border: 1px solid;
  position: relative;
  margin: 0 auto 35px;
}
.know-how_icon::after {
  content: "";
  background-color: #fff;
  width: 78px;
  height: 1px;
  position: absolute;
  top: 107.5px;
  right: -78px;
}
.know-how_box:nth-child(4n) .know-how_icon::after {
  content: none;
}
.know-how_icon figure {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  margin: 0;
}
.know-how_txt {
  margin: 0 auto;
}
.know-how_txt dt {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.know-how_txt dd {
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}
.know-how_txt dd p:last-child {
  margin-bottom: 0;
}
.know-how_box:nth-child(5) .know-how_icon {
  border: 1px dashed;
}


/* suggestion_wrap */
.suggestion_wrap {
  padding-top: 50px;
}
.suggestion_wrap .title::before {
  content: none;
}
.suggestion_wrap .title {
  margin-bottom: 40px;
}
.suggestion_block {
  display: flex;
  flex-wrap: wrap;
  margin-inline: auto;
  max-width: 1250px;
}
.suggestion_box {
  margin-right: 4%;
  transition: .4s;
  width: 48%;
}
.suggestion_box.delay-time05 {
  transition: 2s;
}
.suggestion_box.delay-time06 {
  transition: 2.5s;
}
.suggestion_box.delay-time07 {
  transition: 3s;
}
.suggestion_box.delay-time08 {
  transition: 3.5s;
}
.suggestion_box.delay-time09 {
  transition: 4s;
}
.suggestion_box:nth-child(2n) {
  margin-top: 50px;
  margin-right: 0;
}
.suggestion_box figure {
  margin-bottom: 20px;
}
.suggestion_txt dt {
  font-size: 24px;
  margin-bottom: 10px;
}
.suggestion_txt dd {
  font-size: 15px;
  font-weight: normal;
  margin: 0;
}


/* signage_wrap */
.signage_wrap {
  padding-top: 130px;
}
.signage_wrap .title {
  margin-bottom: 60px;
}
.signage_wrap .title::before {
  content: none;
}
.signage_txt {
  font-size: 13px;
  font-weight: normal;
  max-width: 770px;
  margin: 0 auto 20px;
  line-height: 2;
}
.signage_txt:last-child {
  margin-bottom: 80px;
}
.signage_photo_block {
  display: flex;
}
.signage_photo {
  margin: 0;
  width: calc(100% /2);
}
.signage_photo img {
  width: 100%;
}
.sp_only {
  display: none;
}


/* faq_wrap */
.faq_wrap {
  padding-top: 270px;
  background-image: url(../img/lp/signage_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top -420px center;
}
.faq_wrap .title::before {
  content: none;
}
.faq_box {
  background-color: #000;
  border-bottom: 1px solid;
  margin: 0;
  padding: 30px 80px;
  position: relative;
}
.faq_box::before,
.faq_box::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 3px;
  height: 25px;
  background-color: #fff;
  top: 50%;
  right: 40px;
  transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transition: .4s;
}
.faq_box::after {
  transform: translateY(-50%) rotate(0deg);
  -webkit-transform: translateY(-50%) rotate(0deg);
  -ms-transform: translateY(-50%) rotate(0deg);
}
.faq_box.click::after {
  transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
}
.faq_box:first-child {
  border-top: 1px solid;
}
.faq_box dt {
  font-size: 20px;
  text-align: center;
}
.faq_box dd {
  font-size: 16px;
  font-weight: normal;
  display: none;
  margin: 0;
  margin-top: 20px;
}
.faq_box dd p:last-child {
  margin-bottom: 0;
}
.faq_cont {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
  text-align: center;
}
.indent {
  padding-left: 1em;
  text-indent: -1em;
}
dd .faq_cont {
  text-align: left;
}
.faq_cont a {
  color: #fff;
  border-bottom: 1px solid;
}
.faq_cont a:hover {
  opacity: .5;
  text-decoration: none;
}
.faq_table {
  width: 100%;
}
.faq_table th,
.faq_table td {
  border: 1px solid;
  padding: 10px;
  text-align: center;
}


/* contact_wrap */
.contact_wrap {
  background: #404040;
  padding-top: 210px;
  padding-bottom: 120px;
}
.contact_wrap .title {
  margin-bottom: 70px;
}
.contact_block {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
.form_txt {
  margin-bottom: 40px;
}
.contact_cont {
  margin-bottom: 0;
  margin-left: 20px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.1;
}
.contact_cont a {
  color: #fff;
  font-size: 40px;
  letter-spacing: 0.8px;
  line-height: 1;
}
.contact_cont span {
  font-size: 15px;
  font-weight: normal;
}
.lpform_wrap {
  margin: 0 auto;
  max-width: 840px;
}
.form_block {
  display: flex;
  border-bottom: 1px solid;
  margin: 0;
  padding: 20px 0;
}
.form_block:first-child {
  border-top: 1px solid;
}
.form_block dt p,
.form_block dd p {
  margin: 0;
}
.form_block dt {
  font-size: 21px;
  font-weight: bold;
  margin-right: 80px;
  width: 230px;
}
.form_block dd {
  font-size: 18px;
  flex: 1;
  margin: 0;
}
.form_block input[type=text],
.form_block input[type=email],
.form_block input[type=tel],
.form_block select,
.form_block textarea {
  width: 85%;
  padding: 10px;
  line-height: 1.5;
}
.form_block textarea {
  width: 100%;
}
.checkbox-cl01 input,
.wpcf7-acceptance input {
  display: none;
}
.checkbox-cl01 input + span,
.wpcf7-acceptance input + span {
  padding-left: 28px;
  display: inline-block;
  position: relative;
}
/* // チェックボックスの枠とチェックマークの共通書式 */
.checkbox-cl01 input + span::after,
.checkbox-cl01 input + span::before,
.wpcf7-acceptance input + span::after,
.wpcf7-acceptance input + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}
.checkbox-cl01 input + span::before,
.wpcf7-acceptance input + span::before {
  border: 1px solid #fff;
  background-color: #fff;
  height: 20px;
  width: 20px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
/* // チェックマークにチェックが付いていない時 */
.checkbox-cl01 input + span::after,
.wpcf7-acceptance input + span::after {
  display: none;
  content: '';
  width: 25px;
  height: 13px;
  border-left: 4px solid #FF39DF;
  border-bottom: 4px solid #FF39DF;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-45deg);
}
.checkbox-cl01 input:checked + span::after,
.wpcf7-acceptance input:checked + span::after {
  display: block;
}
.checkbox-cl01 .wpcf7-list-item {
  margin: 0 25px 0 0;
}
.accept_link a {
  color: #fff;
  font-size: 13px;
  margin-left: 20px;
}
.submit_btn {
  padding: 80px 0 0;
  text-align: center;
}
.submit_btn p {
  display: flex;
  justify-content: center;
}
.submit_btn .wpcf7-submit {
  background: linear-gradient(to left, #6DFFFF, #FF39DF);
  color: #fff;
  font-size: 18px;
  padding: 15px 50px;
  text-shadow:
  1px 1px 0 #999,
  -1px 1px 0 #999,
  -1px -1px 0 #999,
  1px -1px 0 #999;
  transition: .3s;
  width: 262px;
}
.submit_btn .wpcf7-submit:disabled {
  background: #999 !important;
}
.submit_btn .wpcf7-submit:disabled:hover {
  cursor: default;
  opacity: 1;
}
.submit_btn .wpcf7-previous {
  color: #fff;
  background-color: #999;
  margin-right: 30px;
  transition: .3s;
  width: 262px;
}
.submit_btn .wpcf7-submit:hover,
.submit_btn .wpcf7-previous:hover {
  opacity: .5;
  cursor: pointer;
}
.wpcf7-spinner {
  display: none !important;
}
.alert {
  background: red;
  display: inline-block;
  font-size: 13px;
  padding: 0px 9px 4px;
  margin: 0 0 -1px 15px;
  vertical-align: text-bottom;
}
.small {
  font-size: 15px;
}


/* footer_wrap */
.footer_wrap {
  padding: 50px 0 80px;
}
.footer_icons_block {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.footer_logo {
  margin: 0 26px 0 0;
}
.footer_icon {
  display: flex;
  margin: 0;
}
.footer_icon li {
  margin-right: 10px;
}
.footer_icon li:last-child {
  margin-right: 0;
}
.footer_company {
  align-items: baseline;
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.footer_company p {
  margin: 0 10px 0 0;
}
.footer_company p:last-child {
  margin-right: 0;
}
.footer_company_en {
  font-family: "KoHo", sans-serif;
  font-weight: bold;
  font-size: 18px;
}
.footer_company_ja {
  font-size: 14px;
}
.footer_company_by {
  font-size: 12px;
}
.footer_info {
  display: flex;
  justify-content: center;
  font-size: 12px;
  font-weight: normal;
}
.footer_info p {
  margin: 0 10px 0 0;
}
.footer_info p:last-child {
  margin-right: 0;
}
.faq_table_txt {
  display: none;
}


@media screen and (max-width:1000px) {
  .support_photo figcaption {
    font-size: 18px;
    margin-top: 15px;
  }
  .know-how_icon {
    height: 180px;
  }
  .know-how_icon::after {
    top: 90px;
  }
}

@media screen and (max-width:900px) {
  .img_box {
    width: calc(100% / 2);
  }
  .know-how_icon {
    height: 160px;
  }
  .know-how_icon::after {
    top: 80px;
  }
  .footer_company p {
    margin-right: 0;
  }
  .footer_company p.footer_company_ja {
    margin-bottom: 5px;
  }
  .footer_company p.footer_company_by {
    margin-bottom: 20px;
  }
  .footer_info p {
    margin: 0 0 5px 0;
  }
  .footer_info p:last-child {
    margin-bottom: 0;
  }
  .know-how_wrap::before {
    background-size: contain;
    width: 90%;
  }
  .installation_wrap::after {
    background-size: contain;
    width: 90%;
    
  }
}

@media screen and (max-width:800px) {
  .footer_company,
  .footer_info {
    display: block;
    text-align: center;
  }
}

@media screen and (max-width:768px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .main_txt {
    font-size: 20px;
  }
  .main_title {
    margin-bottom: 40px;
  }
  .main_subtxt {
    font-size: 21px;
    margin-bottom: 50px;
  }
  .main_list_block {
    width: 30%;
  }
  .title {
    font-size: 25px;
    margin-bottom: 40px;
  }
  .title_sub {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .support_photo_block {
    display: block;
    margin-top: 150px;
  }
  .support_photo_block::before {
    top: -110px;
    width: 80%;
  }
  .support_photo {
    margin: 0 0 40px 0;
    width: 90%;
  }
  .support_photo:nth-child(2) {
    margin-left: 10%;
  }
  .support_photo:first-child,
  .support_photo:nth-child(3) {
    margin-top: 0;
  }
  .installation_img {
    width: 100%;
  }
  .know-how_box {
    margin-right: 10%;
    width: 45%;
  }
  .know-how_box:nth-child(2n) {
    margin-right: 0;
  }
  .know-how_box:nth-child(2n) .know-how_icon::after {
    content: none;
  }
  .know-how_txt dt {
    font-size: 17px;
    margin-bottom: 15px;
  }
  .know-how_icon {
    margin-bottom: 25px;
  }
  .suggestion_txt dt {
    font-size: 22px;
  }
  .suggestion_box {
    margin-right: 8%;
    width: 46%;
  }
  .signage_wrap {
    padding-top: 110px;
  }
  .signage_txt:last-child {
    margin-bottom: 50px;
  }
  .faq_wrap {
    padding-top: 100px;
  }
  .faq_box {
    padding: 30px 55px 30px 10px;
  }
  .faq_box::before,
  .faq_box::after {
    height: 15px;
    right: 30px;
  }
  .footer_wrap {
    padding: 30px 0 60px;
  }
  .form_block {
    display: block;
  }
  .form_block dt {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .wpcf7-list-item {
    display: block;
    margin-bottom: 10px !important;
  }
  .contact_cont {
    font-size: 20px;
  }
  .contact_cont a {
    font-size: 35px;
  }
  .contact_cont span {
    font-size: 13px;
  }
  .contact_wrap {
    padding-top: 180px;
  }
  .img_box img {
    height: 250px;
    object-fit: cover;
  }
}


@media screen and (max-width:600px) {
  .img_box {
    width: 100%;
  }
  .know-how_box {
    margin-right: 0;
    width: 100%;
  }
  .know-how_icon::after {
    content: none;
  }
  .know-how_icon {
    margin-bottom: 20px;
  }
  .know-how_txt dt {
    margin-bottom: 10px;
  }
  .know-how_txt dd p {
    margin-bottom: 7px;
  }
  .suggestion_block {
    display: block;
  }
  .suggestion_box {
    margin: 0 0 50px 0;
    width: 100%;
  }
  .suggestion_box:nth-child(2n) {
    margin-top: 0;
  }
  .signage_wrap {
    padding-top: 70px;
  }
  .img_wrap {
    background-size: 40%;
    padding-top: 150px;
    margin-top: -70px;
  }
  .installation_wrap::after {
    top: 55%;
  }
  .faq_box dt {
    font-size: 16px;
  }
  .faq_box dd {
    font-size: 15px;
  }

}

@media screen and (max-width:500px) {
  .faq_table {
    overflow-x: auto;
    display: block;
  }
  .faq_table th,
  .faq_table td {
    white-space: nowrap;
  }
  .faq_table_txt {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
  }
}