@charset "UTF-8";
/*
|---------------------------------------------------------------
| ec-connector-2025 FAQ css
|---------------------------------------------------------------
*/
.ecc-page__body {
  padding: 0;
  color: var(--ecc-body-color);
  background-color: var(--ecc-light-color);
}

.footerTop__cta {
  display: none;
}
.footerTop__services {
  display: block;
}

/*--------------- Q & A ---------------*/
.qa-question,
.qa-answer {
  --ecc-document-padding: 0;
  position: relative;
  padding-left: 35px;
}
.qa-question::before,
.qa-answer::before {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  margin: auto;
}

.qa-question::before {
  content: "Q.";
  color: #1a81c8;
}

.qa-answer::before {
  content: "A.";
  color: #484747;
}

/*--------------- Group ---------------*/
.qa-group {
  display: block;
  width: 100%;
}
.qa-group__list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-gap: 10px;
}
@media (min-width: 750.02px) {
  .qa-group__list {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    grid-gap: 15px clamp(15px, 2vw, 60px);
  }
}
.qa-group__list__item {
  display: block;
}

.qa-block {
  --ecc-border-color: #dbe2e9;
  --ecc-padding-x: 1em;
  --ecc-border-radius: 5px;
  display: block;
  width: 100%;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid var(--ecc-border-color);
  border-radius: var(--ecc-border-radius);
  overflow: hidden;
}
.qa-block__head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
  padding: 0.75em var(--ecc-padding-x);
  font-weight: 600;
}
.qa-block__head.js--active {
  cursor: pointer;
}
.qa-block__head.js--active::after {
  --fa: "\f0d7";
  content: var(--fa);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  text-decoration: none;
  margin-left: 0.5em;
  flex-shrink: 0;
}
.qa-block__head.js--opened::after {
  --fa: "\f0d8";
}
.qa-block__body {
  display: none;
  width: 100%;
  border-top: 1px solid var(--ecc-border-color);
}
@media (min-width: 750.02px) {
  .qa-block {
    --ecc-padding-x: 1.39em;
    --ecc-border-radius: 10px;
  }
  .qa-block__head {
    font-size: 18px;
    line-height: 1.5;
    padding-top: 0.86em;
    padding-bottom: 0.86em;
  }
}
.qa-block__content {
  padding: 30px var(--ecc-padding-x);
}

/*--------------- list ---------------*/
.qa-list {
  list-style: none;
  padding-left: 0;
  display: block;
  width: 100%;
}
.qa-list__item {
  display: block;
  width: 100%;
}
.qa-list__item:not(:last-child) {
  border-bottom: 1px solid var(--ecc-border-color);
}

.qa-list-link {
  --ecc-padding-y: 0.85em;
  --ecc-font-size: 14px;
  --ecc-line-height: 1.75;
  display: block;
  width: 100%;
  height: auto;
  padding: var(--ecc-padding-y) var(--ecc-padding-x);
  font-size: var(--ecc-font-size);
  font-weight: 400;
  line-height: var(--ecc-line-height);
  position: relative;
  color: inherit;
  text-decoration: none !important;
}
.qa-list-link[href] {
  padding-left: calc(var(--ecc-padding-x) + 1em);
}
.qa-list-link[href]::before {
  --fa: "\f105";
  content: var(--fa);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  text-decoration: none;
  color: #1a81c8;
  position: absolute;
  top: calc(var(--ecc-padding-y) + var(--ecc-line-height) / 2 * 1em);
  left: var(--ecc-padding-x);
  z-index: 1;
  margin: auto;
  transform: translateY(-50%);
}
@media (min-width: 750.02px) {
  .qa-list-link {
    --ecc-font-size: 16px;
  }
}

/*
 * Service
------------------------------------------------*/
.qa-service {
  --ecc-qa-image-maxwidth: 5.25em;
  --ecc-gap: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--ecc-gap);
  font-size: 12px;
  font-weight: 700;
}
.qa-service__image {
  display: block;
  flex: 0 0 var(--ecc-qa-image-maxwidth);
  max-width: var(--ecc-qa-image-maxwidth);
}
.qa-service__image img {
  display: block;
  width: 100%;
  height: auto;
}
.qa-service__body {
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0 var(--ecc-gap);
}
@media (min-width: 750.02px) {
  .qa-service {
    --ecc-qa-image-maxwidth: 3.63em;
    --ecc-gap: 15px;
    font-size: 16px;
  }
  .qa-service__body {
    flex-direction: row;
    align-items: center;
  }
}
.qa-service__name {
  display: block;
  font-family: var(--ecc-font-family-en, var(--ecc-font-family-base, sans-serif));
  font-size: 1.5em;
  font-weight: bold;
}
.qa-service__catchcopy {
  display: block;
}

/*
 * Section
------------------------------------------------*/
.qa-section {
  display: block;
  width: 100%;
}
.qa-section__header {
  display: block;
  width: 100%;
  margin: 0 0 clamp(30px, 4vw, 60px);
}
.qa-section__body {
  display: block;
  width: 100%;
}

.qa-section-title {
  display: block;
  margin: 0 0 2em;
  font-size: 22px;
  font-size: clamp(22px, 2.93vw, 28px);
  font-weight: 600;
  text-align: left;
  line-height: 1.5;
  position: relative;
  padding: 0 0 0 0.68em;
}
.qa-section-title::before {
  content: "";
  display: block;
  width: 1.14em;
  height: 0.32em;
  background-color: #004688;
  border-radius: 0 0.16em 0.16em 0;
  position: absolute;
  top: 50%;
  left: calc(-1 * var(--ecc-container-padding, 20px));
  right: auto;
  bottom: auto;
  z-index: 1;
  margin: auto;
  transform: translateY(-50%);
}
@media (min-width: 750.02px) {
  .qa-section-title {
    padding-left: 2.43em;
  }
  .qa-section-title::before {
    width: 1.64em;
    height: 0.21em;
    border-radius: 0 0.11em 0.11em 0;
    left: 0;
  }
}

/*
 * Badge
------------------------------------------------*/
.qa-badge {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.1;
  padding: 0.25em 0.5em;
  border-radius: 0.25em;
  font-size: clamp(10px, 1.33vw, 12px);
  font-weight: bold;
  font-family: var(--ecc-font-family-en, var(--ecc-font-family-base, sans-serif));
  font-style: normal;
  text-align: center;
  color: var(--ecc-text-color, #ffffff);
  background-color: var(--ecc-theme-color, #1a81c8);
}

/*
 * Category & Tag
------------------------------------------------*/
.qa-term {
  width: 100%;
  display: flex;
  align-items: center;
}
.qa-term__list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 1em;
}
@media (min-width: 750.02px) {
  .qa-term__list {
    gap: 0.5em 1em;
  }
}
.qa-term__list__item {
  display: block;
}

.qa-category {
  display: block;
  width: 100%;
}
.qa-category__head {
  display: block;
  margin: 0 0 1em;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  line-height: 1.5;
  position: relative;
  padding: 0 0 0 1.5em;
}
.qa-category__head::before {
  content: "";
  display: block;
  width: 1em;
  height: 0.3em;
  background-color: #004688;
  border-radius: 0 0.15em 0.15em 0;
  position: absolute;
  top: 50%;
  left: 0;
  right: auto;
  bottom: auto;
  z-index: 1;
  margin: auto;
  transform: translateY(-50%);
}
.qa-category__body {
  display: block;
  width: 100%;
}
.qa-category__list {
  list-style: none;
  padding-left: 0;
  display: block;
  width: 100%;
}
.qa-category__list__item {
  display: block;
  width: 100%;
  margin: 0 0 0.5em;
}

.qa-category-link {
  display: inline-block;
  padding-left: 1.5em;
  color: inherit;
  text-decoration: none;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
}
.qa-category-link[href]:hover {
  text-decoration: underline;
}
.qa-category-link[href]::before {
  --fa: "\f105";
  content: var(--fa);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  text-decoration: none;
  color: #1a81c8;
  position: absolute;
  top: 0.75em;
  left: 0;
  z-index: 1;
  margin: auto;
  transform: translateY(-50%);
}

/*
 * Search
------------------------------------------------*/
.qa-search {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-gap: 40px;
}
.qa-search__tags {
  display: block;
  width: 100%;
}

.qa-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 25px;
  padding: 0 1.5em;
  background-color: #ffffff;
  /* border: 2px solid #000000; */
  border: 2px solid currentColor;
}
.qa-search-form__input {
  display: block;
  width: 100%;
  flex-grow: 1;
  flex-basis: 0;
  font-weight: 500;
}
.qa-search-form__input input {
  display: block;
  width: 100%;
  outline: 0 !important;
  box-shadow: none !important;
  font-size: 13px;
  line-height: 1.5;
  padding: 0.79em 0;
}
@media (min-width: 750.02px) {
  .qa-search-form__input input {
    font-size: 16px;
    line-height: 1.5;
    padding: 0.63em 0;
  }
}
.qa-search-form__action {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  max-width: 100%;
  font-size: 1em;
}
@media (min-width: 750.02px) {
  .qa-search-form__action {
    font-size: 20px;
  }
}

.qa-search-btn {
  color: #555555;
  font-size: 1em;
}

.qa-search-nav {
  font-size: 13px;
  font-weight: 500;
}
.qa-search-nav__head {
  display: block;
  max-width: 100%;
  flex: 0 0 auto;
  margin: 0 1em 1em 0;
}
.qa-search-nav__head::after {
  content: "：";
}
.qa-search-nav__body {
  display: block;
}
@media (min-width: 750.02px) {
  .qa-search-nav {
    font-size: 16px;
    display: flex;
    justify-content: center;
  }
  .qa-search-nav__head {
    margin-bottom: 0;
  }
}

/*
 * Contact
------------------------------------------------*/
.qa_contact {
  display: block;
  width: 100%;
  padding: 40px 0;
}
.qa_contact__lead {
  display: block;
  width: 100%;
  margin: 0 0 30px;
  font-size: 13px;
  font-weight: 700;
}
.qa_contact__nav {
  display: block;
  width: 100%;
  margin: 0 0 10px;
}
.qa_contact__nav__btn {
  width: 100%;
  max-width: 600px;
}
@media (min-width: 750.02px) {
  .qa_contact {
    padding: 80px 0;
  }
  .qa_contact__lead {
    font-size: clamp(15px, 2vw, 18px);
    text-align: center;
    margin-bottom: 30px;
  }
  .qa_contact__nav {
    margin-bottom: 20px;
  }
}

/*
 * archive
------------------------------------------------*/
.qa-archive__content {
  display: block;
  width: 100%;
  padding: 50px 0;
}
@media (min-width: 750.02px) {
  .qa-archive__content {
    padding: 80px 0;
  }
}
.qa-archive__search {
  display: block;
  width: 100%;
  margin-bottom: clamp(45px, 6vw, 90px);
}
.qa-archive__categories {
  display: block;
  width: 100%;
  margin-bottom: clamp(45px, 6vw, 90px);
}
.qa-archive__services {
  display: block;
  width: 100%;
  margin-bottom: clamp(45px, 6vw, 90px);
}

.qa-archive-title {
  margin-bottom: clamp(20px, 2.67vw, 30px);
}

/*
 * Search Result Page
------------------------------------------------*/
.qa-searchPage__content {
  display: block;
  width: 100%;
  padding: 50px 0;
}
@media (min-width: 750.02px) {
  .qa-searchPage__content {
    padding: 80px 0;
  }
}
.qa-searchPage__layout {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.qa-searchPage__layout__nav {
  width: 100%;
  order: 1;
}
.qa-searchPage__layout__body {
  width: 100%;
}
@media (min-width: 750.02px) {
  .qa-searchPage__layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    grid-gap: clamp(15px, 2vw, 60px);
  }
  .qa-searchPage__layout__nav {
    order: -1;
  }
}

.qa-searchPage-nav {
  display: block;
  width: 100%;
}
.qa-searchPage-nav__searchs {
  display: block;
  width: 100%;
  margin: 0 0 50px;
}
.qa-searchPage-nav__searchs .qa-search-form {
  padding-left: 0.75em;
  padding-right: 0.75em;
}
.qa-searchPage-nav__searchs .qa-search__tags {
  display: none;
}
.qa-searchPage-nav__categories {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-gap: 10px;
}
@media (min-width: 750.02px) {
  .qa-searchPage-nav__categories {
    grid-gap: 60px;
  }
}

.qa-searchPage-result {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-gap: 10px;
}
@media (min-width: 750.02px) {
  .qa-searchPage-result {
    grid-gap: 30px;
  }
}
.qa-searchPage-result__block {
  display: block;
  width: 100%;
}
.qa-searchPage-result__block:not(.js--active) {
  display: none;
}
.qa-searchPage-result__notfound {
  display: block;
  text-align: center;
}
.qa-searchPage-result__block.js--active ~ .qa-searchPage-result__notfound {
  display: none;
}

.qa-searchPage-back {
  display: block;
  width: 100%;
  margin: 50px 0;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.qa-searchPage-back__link {
  color: inherit;
  text-decoration: none;
}
.qa-searchPage-back__link[href]:hover {
  text-decoration: underline;
}
