@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-SemiBold.ttf");
  font-weight: bold;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Light.ttf");
  font-weight: 300;
}
body {
  background: #fff;
  -webkit-text-size-adjust: 100%;
  font-family: "Rubik";
}
* {
  box-sizing: border-box;
}
main .container {
  max-width: 1200px;
  width: unset;
}
.banner {
  padding: 64px 0;
  background: url('../img/support/banner-pc.webp') no-repeat center / cover;
}
.banner h1 {
  color: #061c3d;
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  line-height: 125.182%;
  /* 60.087px */
}
.wrap1 {
  margin-top: 50px;
}
.wrap1 .wrap-tit {
  color: #061c3d;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 150%;
  /* 48px */
}
.wrap1 .wrap-link {
  display: block;
  margin: 14px auto 0;
  color: #0b63e5;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: underline;
}
.wrap1 .wrap-link span {
  text-decoration: underline;
  display: inline-block;
  transition: all 0.3s;
}
.wrap1 .wrap-link:hover span {
  transform: translateX(6px);
}
.wrap1 .wrap1-cont {
  margin-top: 52px;
  display: flex;
  column-gap: 24px;
}
.wrap1 .wrap1-cont .wrap1-item {
  flex: 1;
  border-radius: 16px;
  background: #f2f8ff;
  padding-bottom: 12px;
  height: fit-content;
}
.wrap1 .item-top {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  margin-top: 24px;
}
.wrap1 .item-top h3 {
  color: #061c3d;
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
}
.wrap1 .item-read {
  display: block;
  margin: 10px auto 28px;
  text-align: center;
  color: #0b63e5;
  font-size: 16px;
  line-height: normal;
}
.wrap1 .item-read span {
  transition: all 0.3s;
  display: inline-block;
}
.wrap1 .item-read:hover span {
  transform: translateX(8px);
}
.wrap1 .item-cont {
  margin: 16px 10px 0;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #aac8ff;
  background: #fff;
  cursor: pointer;
}
.wrap1 .item-cont .item-faq {
  color: #061c3d;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
}
.wrap1 .item-cont .item-answer {
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
  color: #414141;
  font-size: 16px;
  line-height: 160%;
  /* 25.6px */
}
.wrap1 .item-cont .item-answer span,
.wrap1 .item-cont .item-answer a {
  color: #0b63e5;
}
.wrap1 .item-cont .item-answer .item-link {
  text-decoration: underline;
}
.wrap1 .item-cont .item-answer .item-member {
  display: block;
  width: fit-content;
  margin: 12px auto 0;
  padding: 8px 56px;
  border-radius: 50px;
  background: #235afa;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.57;
  transition: transform 0.4s;
}
.wrap1 .item-cont .item-answer .item-member:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%), #235afa;
}
.wrap1 .item-cont:hover .item-answer {
  max-height: 400px;
  overflow: hidden;
  visibility: visible;
  opacity: 1;
  margin-top: 20px;
}
.wrap2 {
  margin-top: 184px;
  margin-bottom: 140px;
}
.wrap2 .container {
  display: flex;
  align-items: center;
  gap: 32px;
  align-items: inherit;
}
.wrap2 .wrap-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  flex: 1;
  padding: 30px 0 64px;
  border-radius: 20px;
  border: 1px solid #e2e2e2;
  background: #fff;
  transition: all 0.3s;
}
.wrap2 .wrap-item:hover {
  border: 1px solid #57f;
  background: #f9fcff;
}
.wrap2 .wrap-item h2 {
  color: #061c3d;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}
.wrap2 .wrap-item .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  main .container {
    padding: 0 15px;
    width: 100%;
  }
}
@media (max-width: 770px) {
  .banner {
    padding: 34px 0;
  }
  .banner h1 {
    display: flex;
    flex-direction: column;
    font-size: 28px;
  }
  .wrap1 {
    margin-top: 60px;
  }
  .wrap1 .wrap-tit {
    font-size: 24px;
  }
  .wrap1 .wrap-link {
    margin-top: 24px;
    font-size: 16px;
  }
  .wrap1 .wrap1-cont {
    flex-direction: column;
    row-gap: 24px;
  }
  .wrap1 .wrap1-cont .wrap1-item {
    border-radius: 10px;
  }
  .wrap1 .item-top {
    margin-top: 12px;
    column-gap: 10px;
  }
  .wrap1 .item-top h3 {
    font-size: 20px;
  }
  .wrap1 .item-top img {
    width: 36px;
    height: 36px;
  }
  .wrap1 .item-read {
    margin: 10px auto 18px;
    font-size: 14px;
  }
  .wrap1 .item-cont {
    margin: 14px 10px 0;
    padding: 14px;
    border-radius: 10px;
  }
  .wrap1 .item-cont .item-faq {
    font-size: 16px;
  }
  .wrap1 .item-cont .item-answer {
    font-size: 14px;
  }
  .wrap1 .item-cont .item-answer .item-member {
    font-size: 12px;
    padding: 6px 20px;
  }
  .wrap2 {
    margin-top: 46px;
    margin-bottom: 62px;
  }
  .wrap2 .container {
    gap: 16px;
  }
  .wrap2 .wrap-item {
    padding: 24px 8px 18px;
  }
  .wrap2 .wrap-item h2 {
    font-size: 16px;
  }
  .wrap2 .wrap-item .item-img {
    width: 78px;
    height: 78px;
    margin-bottom: 10px;
  }
  .wrap2 .wrap-item .item-img img {
    width: 100%;
  }
}
