@charset "UTF-8";
/*==============================
設定
==============================*/
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding: 80px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding: 50px;
  }
}

body {
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  background: #FAFAFA;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

/*==========================
共通クラス
==========================*/
.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 40px;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 80px 16px;
  }
}

.section__title--border {
  position: relative;
  padding-bottom: 16px;
  letter-spacing: 0.04em;
  text-align: center;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .section__title--border {
    font-size: 20px;
  }
}
.section__title--border::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #029FF7;
}

.section__title {
  letter-spacing: 0.04em;
  line-height: 1.35;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section__title {
    font-size: 26px;
  }
}
.section__title span {
  display: inline-block;
  letter-spacing: 0.03em;
  font-size: 14px;
  font-weight: bold;
  color: #1BA0F4;
}
@media screen and (max-width: 767px) {
  .section__title span {
    font-size: 12px;
  }
}
.section__title.section__title--white {
  color: #fff;
}
.section__title.section__title--white span {
  color: #fff;
}

/*==========================
header
==========================*/
.header {
  position: fixed;
  height: 80px;
  width: 100%;
  background: #fff;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header {
    height: 50px;
  }
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
  height: 100%;
  margin: auto;
  padding-right: 40px;
  padding-left: 40px;
  box-sizing: content-box;
}
@media screen and (max-width: 1280px) {
  .header__container {
    padding-right: 64px;
  }
}
@media screen and (max-width: 767px) {
  .header__container {
    gap: 10px;
    padding-right: 57px;
    padding-left: 16px;
  }
}

/* ロゴ */
.header__logo {
  line-height: 80px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 48%;
    max-width: 142px;
  }
}
.header__logo a {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
}
.header__logo a:hover {
  opacity: 0.7;
}
.header__logo a img {
  display: block;
  width: auto;
  height: min(47px, 2.5vw);
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1280px) {
  .header__logo a img {
    height: 38px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo a img {
    height: 23px;
  }
}

/* ナビゲーション */
.header__navi {
  flex: 1;
  height: 100%;
}

.header__items {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}

.header__item {
  line-height: 80px;
}
.header__item a {
  display: inline-block;
  font-size: 14px;
  transition: 0.3s ease;
}
.header__item a:hover {
  opacity: 0.7;
}

.header__item__btn__container {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .header__item__btn__container {
    gap: 8px;
  }
}

.header__item__btn {
  width: min(167px, 10.9375vw);
  height: 36px;
}
@media screen and (max-width: 1280px) {
  .header__item__btn {
    width: 167px;
  }
}
@media screen and (max-width: 767px) {
  .header__item__btn {
    width: auto;
    height: 30px;
  }
}
.header__item__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  border-radius: 6px;
  font-size: 14px;
  color: #fff;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__item__btn a {
    padding: 0 clamp(8px, 2.1333333333vw, 16px);
    font-size: 10px;
  }
}
@media screen and (max-width: 374px) {
  .header__item__btn a {
    padding: 0 6px;
    font-size: 8px;
  }
}
.header__item__btn a:hover {
  opacity: 0.7;
}

.header__item__btn--contact a {
  background: #073595;
}

.header__item__btn--login a {
  background: #029FF7;
}

/* ハンバーガーメニュー */
.header__hamburger__button,
.header__hamburger__content {
  display: none;
}

.header__hamburger__item a {
  text-decoration: none;
}

@media screen and (max-width: 1280px) {
  .header {
    position: fixed;
  }
  /* ナビゲーション */
  .header__navi {
    display: none;
  }
  /* ハンバーガーメニュー */
  .header__hamburger__button {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    width: 29px;
    height: 22px;
    z-index: 3;
    cursor: pointer;
    text-align: center;
  }
  .header__hamburger__button span {
    display: block;
    position: absolute;
    width: 29px;
    height: 2px;
    left: 0;
    background: #029FF7;
    transition: 0.2s ease-in-out;
  }
  .header__hamburger__button span:nth-child(1) {
    top: 0;
  }
  .header__hamburger__button span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .header__hamburger__button span:nth-child(3) {
    bottom: 0;
  }
  .header__hamburger__button.active span {
    background: #fff;
  }
  .header__hamburger__button.active span:nth-child(1) {
    top: 10px;
    transform: rotate(-45deg);
  }
  .header__hamburger__button.active span:nth-child(2),
  .header__hamburger__button.active span:nth-child(3) {
    top: 10px;
    transform: rotate(45deg);
  }
  .header__hamburger__content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 40%;
    min-width: -moz-fit-content;
    min-width: fit-content;
    height: 100%;
    padding: 15px;
    background-image: linear-gradient(135deg, #073595, #029FF7);
    transition: all 0.2s;
    z-index: 2;
  }
}
@media screen and (max-width: 1280px) and (max-width: 767px) {
  .header__hamburger__content {
    width: 60%;
  }
}
@media screen and (max-width: 1280px) {
  .header__hamburger__content.active {
    transform: translateX(0%);
  }
  .header__hamburger__item {
    text-align: center;
  }
  .header__hamburger__item a {
    display: inline-block;
    padding: 16px;
    color: #fff;
  }
}
/*==========================
  footer
==========================*/
.footer {
  background: #F3FAFE;
}
.footer .inner {
  padding-block: 0;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 64px 12px 55px 35px;
}
@media screen and (max-width: 767px) {
  .footer__container {
    display: block;
    padding: 56px 16px;
  }
}

/* ロゴ */
.footer__logo {
  width: 33%;
  max-width: 310px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 100%;
    max-width: 250px;
    margin-inline: auto;
  }
}
.footer__logo img {
  width: auto;
  height: 47px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ナビゲーション */
@media screen and (max-width: 767px) {
  .footer__navi {
    margin-top: 30px;
  }
}

.footer__navi__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__navi__item a {
  display: inline-block;
  padding: 0 18px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer__navi__item a {
    padding: 10px;
  }
}

.footer__navi__item a:hover {
  opacity: 0.7;
}

/* コピーライト */
.footer__copyright {
  padding: 16px;
  letter-spacing: 0.02em;
  text-align: center;
  border-top: 1px solid #D2D2D7;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 11px;
  }
}

/*==========================
  main viusal
==========================*/
#mainvisual {
  height: calc(100vh - 80px);
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  #mainvisual {
    min-height: unset;
    height: calc(100vh - 50px);
    margin-top: 50px;
  }
}

.mainvisual__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 min(140px, 9.7222222222vw);
  background: url(../img/mv.jpg) no-repeat 70% center/cover;
}
@media screen and (min-width: 768px) and (max-width: 1380px) {
  .mainvisual__inner {
    background: url(../img/mv.jpg) no-repeat 68% center/cover;
    padding: 0 min(140px, 6.25vw);
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__inner {
    justify-content: unset;
    padding: 11% min(30px, 4vw);
    background: url(../img/mv_sp.jpg) no-repeat right bottom/cover;
  }
}

.mainvisual__sub-catch {
  line-height: 1.44;
  letter-spacing: 0.04em;
  font-size: min(32px, 3.2552083333vw);
  font-weight: bold;
  color: #222;
}
@media screen and (min-width: 768px) and (max-width: 1380px) {
  .mainvisual__sub-catch {
    font-size: max(22px, 2.3188405797vw);
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__sub-catch {
    margin-top: 12px;
    font-size: min(18px, 4.8vw);
  }
}
@media screen and (max-width: 320px) {
  .mainvisual__sub-catch {
    font-size: 13px;
  }
}

.mainvisual__catch {
  letter-spacing: 0.03em;
  line-height: 1.2;
  font-family: "Inter", sans-serif;
  font-size: min(80px, 8.3333333333vw);
  font-weight: 600;
  color: #222;
}
@media screen and (min-width: 768px) and (max-width: 1380px) {
  .mainvisual__catch {
    font-size: min(80px, 5.7971014493vw);
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__catch {
    font-size: min(48px, 12.8vw);
  }
}
.mainvisual__catch span {
  display: inline-block;
  letter-spacing: 0.05em;
  line-height: 1.44;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(46px, 4.6875vw);
  font-weight: bold;
}
@media screen and (min-width: 768px) and (max-width: 1380px) {
  .mainvisual__catch span {
    font-size: max(26px, 3.3333333333vw);
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__catch span {
    margin-bottom: 8px;
    font-size: 26px;
  }
}

.mainvisual__text-container {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .mainvisual__text-container {
    flex-direction: column-reverse;
  }
}

.mainvisual__circle__container {
  display: flex;
  gap: 14px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .mainvisual__circle__container {
    max-width: 180px;
    margin-top: 37px;
  }
}
.mainvisual__circle__container li {
  width: min(150px, 14.3229166667vw);
}
.mainvisual__circle__container li img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/*==========================
  solution
==========================*/
#solution {
  background: #FAFAFA;
}
#solution .inner {
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #solution .inner {
    padding-bottom: 648x;
  }
}

.solution__list {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .solution__list {
    display: block;
  }
}
.solution__list li {
  width: 32%;
  padding: 18px 28px;
  text-align: center;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .solution__list li {
    width: 100%;
    max-width: 340px;
    margin: 24px auto 0;
  }
}
.solution__list li img {
  display: inline-block;
  width: 30px;
  height: 30px;
}
.solution__list li p {
  margin-top: 8px;
  line-height: 1.5;
}

.solution__arrow {
  margin-top: 12px;
  width: 15px;
  height: 59px;
  margin-inline: auto;
}
.solution__arrow img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.solution__desc {
  letter-spacing: 0.04em;
  text-align: center;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .solution__desc {
    font-size: 26px;
  }
}

/*==========================
  about
==========================*/
#about {
  background: rgba(27, 160, 244, 0.4392156863) url(../img/bg_about.jpg) no-repeat center center/cover;
}
#about .inner {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  #about .inner {
    padding-top: 48px;
  }
}

.about__desc {
  margin-top: 32px;
  text-align: center;
  color: #fff;
}

/*==========================
  features
==========================*/
#features {
  background: #F3FAFE;
}

.features__item__container {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .features__item__container {
    margin-top: 48px;
  }
}

.features__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .features__item {
    display: block;
    max-width: 600px;
    margin-inline: auto;
  }
}
.features__item:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .features__item:not(:first-child) {
    margin-top: 32px;
  }
}

.features__item--reverse {
  flex-direction: row-reverse;
}

.features__item__img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .features__item__img {
    width: 100%;
  }
}
.features__item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.features__item__text {
  width: calc(50% + 53px);
  margin-left: -53px;
  padding: 32px 32px 40px;
  background: #fff;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .features__item__text {
    width: 100%;
    margin-left: 0;
  }
}

.features__item--reverse .features__item__text {
  margin-right: -53px;
  margin-left: unset;
}
@media screen and (max-width: 767px) {
  .features__item--reverse .features__item__text {
    margin-right: 0;
  }
}

.features__item__text__head {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 10px;
  line-height: 1;
  font-size: 40px;
  color: #1BA0F4;
}
.features__item__text__head span {
  padding: 2px 16px;
  line-height: 1.2;
  border-radius: 4px;
  font-size: 16px;
  color: #fff;
  background: #1BA0F4;
}

.features__item__text__title {
  letter-spacing: 0.04em;
  font-size: 24px;
}

.features__item__text__desc {
  margin-top: 16px;
}

/*==========================
  effect
==========================*/
#effect {
  background: #FAFAFA;
}
#effect .inner {
  padding-bottom: 106px;
}
@media screen and (max-width: 767px) {
  #effect .inner {
    padding-bottom: 88px;
  }
}

.effect__lead {
  margin-top: 24px;
  text-align: center;
}

.effect__item__container {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .effect__item__container {
    display: block;
  }
}

.effect__item {
  width: 32%;
  padding: 32px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .effect__item {
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
  }
  .effect__item:not(:first-child) {
    margin-top: 32px;
  }
}

.effect__item__img {
  width: 58%;
  max-width: 150px;
  margin-inline: auto;
}
.effect__item__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.effect__item__title {
  margin-top: 16px;
  text-align: center;
  font-size: 20px;
  color: #1BA0F4;
}

.effect__item__desc {
  margin-top: 6px;
  text-align: center;
}

/*==========================
  contact
==========================*/
.contact {
  background: #1BA0F4;
}
.contact .inner {
  padding-top: 56px;
  padding-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .contact .inner {
    padding-top: 48px;
    padding-bottom: 56px;
  }
}
.contact .section__title {
  font-size: 24px;
}

.contact__desc {
  margin-top: 16px;
  text-align: center;
  font-weight: 500;
  color: #fff;
}

.contact__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 24px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .contact__list {
    display: block;
  }
}

.contact__item a {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .contact__item--tel {
    text-align: center;
  }
}
.contact__item--tel span {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contact__item--tel span {
    text-align: center;
  }
}
.contact__item--tel a {
  transition: opacity 0.3s ease;
}
.contact__item--tel a:hover {
  opacity: 0.7;
}
.contact__item--tel a span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
.contact__item--tel a span::before {
  display: inline-block;
  content: "";
  width: 25px;
  height: 25px;
  margin-right: 8px;
  background: url(../img/icon_tel.svg) no-repeat center center/contain;
}

.contact__item--mail {
  height: 62px;
  width: 100%;
  max-width: 352px;
}
@media screen and (max-width: 767px) {
  .contact__item--mail {
    margin-top: 32px;
    margin-inline: auto;
  }
}
.contact__item--mail a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #fff;
  font-size: 20px;
  transition: all 0.3s ease;
}
.contact__item--mail a:hover {
  background-color: #1BA0F4;
}
.contact__item--mail a:hover span {
  color: #fff;
}
.contact__item--mail a:hover span::before {
  background: url(../img/icon_mail-white.svg) no-repeat center center/contain;
}
.contact__item--mail a span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #1BA0F4;
}
.contact__item--mail a span::before {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background: url(../img/icon_mail.svg) no-repeat center center/contain;
}

/*==========================
  case
==========================*/
#case {
  background: #FAFAFA;
  position: relative;
  padding: 2rem 0;
}

@media screen and (max-width: 767px) {
  .splide {
    max-width: calc(100% - 50px);
    margin-inline: auto;
  }
}

.splide__track {
  margin-top: 32px;
}

.splide__slide a {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}
.splide__slide a:hover {
  opacity: 0.7;
}
.splide__slide .case__item__img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.splide__slide .case__item__title {
  margin-top: 10px;
  font-weight: bold;
}
.splide__slide time {
  margin-top: 6px;
  letter-spacing: 0;
  font-size: 11px;
}

/* 矢印 */
.button {
  background: transparent;
  top: 38%;
  width: 46px;
  height: 46px;
  border-radius: 0;
  opacity: 1;
  transition: 0.2s;
  /* 矢印共通のスタイル */
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .button {
    top: 30%;
  }
}
@media screen and (max-width: 767px) {
  .button {
    width: 36px;
    height: 36px;
  }
}
.button::before {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  width: 46px;
  height: 46px;
  box-shadow: 0 4px 10px rgba(119, 119, 119, 0.1490196078);
}
@media screen and (max-width: 767px) {
  .button::before {
    width: 36px;
    height: 36px;
  }
}

/* 次の矢印 */
.next {
  right: -23px;
}
@media screen and (max-width: 767px) {
  .next {
    right: -18px;
  }
}
.next::before {
  background: url(../img/slide-arrow-next.svg) no-repeat center center/contain;
}

/* 次の矢印 */
.prev {
  left: -23px;
}
@media screen and (max-width: 767px) {
  .prev {
    left: -18px;
  }
}
.prev::before {
  background: url(../img/slide-arrow-prev.svg) no-repeat center center/contain;
}

/*==========================
  flow
==========================*/
#flow {
  background: #F3FAFE;
}
#flow .inner {
  padding-top: 96px;
  padding-bottom: 88px;
}
@media screen and (max-width: 767px) {
  #flow .inner {
    padding-top: 80px;
    padding-bottom: 72px;
  }
}

.flow__list {
  max-width: 856px;
  margin: 72px auto 0;
}

.flow__list__item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .flow__list__item {
    display: block;
    margin: 32px auto 0;
    max-width: 600px;
  }
}
.flow__list__item:not(:first-child) {
  margin-top: 40px;
}

.flow__list__item:not(:last-child) .flow__list__img::before {
  position: absolute;
  content: "";
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: rgba(27, 160, 244, 0.2);
}
@media screen and (max-width: 767px) {
  .flow__list__item:not(:last-child) .flow__list__img::before {
    display: none;
  }
}

.flow__list__img {
  position: relative;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .flow__list__img {
    width: 100%;
    max-width: 200px;
    margin-inline: auto;
  }
}
.flow__list__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.flow__list__text {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .flow__list__text {
    margin-top: 16px;
  }
}
.flow__list__text a {
  text-decoration: underline;
  color: #1BA0F4;
  transition: opacity 0.3s ease;
}
.flow__list__text a:hover {
  opacity: 0.7;
}

.flow__list__title {
  margin-top: 6px;
  font-size: 20px;
  font-weight: bold;
  color: #1BA0F4;
}
.flow__list__title span {
  display: block;
  font-size: 14px;
  font-weight: bold;
}

.flow__list__desc {
  margin-top: 16px;
}

/*==========================
  faq
==========================*/
#faq {
  background: #FAFAFA;
}
#faq .inner {
  padding-bottom: 100px;
}

.faq__item__container {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .faq__item__container {
    margin-top: 40px;
  }
}

.faq-item:not(:first-child) {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .faq-item:not(:first-child) {
    margin-top: 24px;
  }
}

.faq-question__wrap {
  position: relative;
  padding: 24px 56px 24px 80px;
  cursor: pointer;
  background: #fff;
}

.faq-question__title {
  position: relative;
  font-weight: bold;
}
.faq-question__title::before {
  position: absolute;
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: -56px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: #1BA0F4;
}

.minus-icon {
  position: absolute;
  content: "";
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 16px;
  height: 2px;
  background: #1BA0F4;
}

.plus-icon {
  position: absolute;
  content: "";
  width: 16px;
  height: 2px;
  background: #1BA0F4;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: ease all 0.2s;
}
.plus-icon.active {
  transform: translateY(-50%);
}

.faq-answer__wrap {
  height: 0;
  opacity: 0;
  padding: 0 24px 0 80px;
  overflow: hidden;
  transition: ease all 0.2s;
}
.faq-answer__wrap.active {
  height: auto;
  padding: 20px 24px 0 80px;
  opacity: 1;
}

.faq-answer__title {
  position: relative;
  font-weight: 500;
}
.faq-answer__title::before {
  position: absolute;
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: -56px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #1BA0F4;
  color: #1BA0F4;
  background: #fff;
}

/*==========================
  page top
==========================*/
#page-top {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 20px;
  right: 35px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  background: #1BA0F4;
  transition: all 0.2s ease-in-out;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #page-top {
    right: 16px;
    width: 52px;
    height: 52px;
  }
}
#page-top.active {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
#page-top.active:hover {
  opacity: 0.8;
}