:root {
  --base-black: #4f4f4f;
  --base-gray: #eef0f3;
  --base-lightGray: #fdfdfd;
  --base-grayBlue: #97a5b5;
  --base-white: #ffffff;
  --base-lightBlue: #81d8d0;
  --base-red: #f53662;
  --base-lightPink: #f53561;
  --base-peach: #ec73b2;
  --base-brown: #8c4239;
  --base-darkGray: #97a5b5;
  --base-darkBlueGray: #98a6b5;
  --base-inputGray: #cdd6dd;
  --text-black1: #4f4f4f;
  --text-white: #ffffff;
  --text-lightBlue: #81d8d0;
  --text-red: #f53662;
  --text-peach: #ec73b2;
  --text-brown: #8c4239;
  --text-lightPink: #f53561;
  --base-bgBeige: #faf8f5;
  --base-bgLinearTop: #fafcfb;
  --base-darkText: #333;
  --base-mediumText: #555;
  --base-borderGray: #ccc;
  --base-lightBg: #f5f5f5;
  --base-darkGreen: #003032;
  --base-greenAccent: #5eada5;
  --base-purple: #6c5ce7;
  --base-darkPurple: #5b4bc4;
  --base-navy: #1a1a2e;
  --base-borderLight: #e0e0e0;
  --base-borderLightGray: #eee;
  --base-successGreen: #4cc764;
  --intro-border: #e5e7eb;
  --intro-darkGreen: #4e6269;
  --intro-cyan: #5fced8;
  --intro-borderSage: #a6bdc2;
  --intro-lightBg: #f3f4f6;
  --intro-darkText: #314348;
  --intro-yellow: #ffff00;
  --intro-midGreen: #4d6369;
  --base-mintBorder: #e6eeee;
  --base-lightGrayBorder: #eaeaea;
  --base-nearWhiteBg: #f9fbfb;
  --base-paleTealBg: #eaf4f6;
  --base-tealBg: #eaeff0;
  --base-lightMintBorder: #c8ebe9;
  --base-mintBg: #e8f8f7;
  --base-paleMintBg: #e8f5f5;
  --base-borderCard: #e8ecf0;
  --base-lightBorder: #ddd;
  --base-cardBorder: #dbdbdb;
  --base-midGray: #aaa;
  --base-mutedText: #999;
  --base-darkCharcoal: #444;
  --base-midCharcoal: #666;
  --base-slateGray: #6b7280;
  --base-coolGray: #9ca3af;
  --base-paleGray: #f0f0f0;
  --base-hoverGray: #f0f1f3;
  --base-teal: #3bb8b8;
  --base-softTeal: #7ecfcf;
  --base-mediumTeal: #5cc4bb;
  --base-mediumTealDark: #4ab3aa;
  --base-lightTeal: #a8e8e2;
  --base-lightTealScrollTrack: #e8f7f6;
  --base-darkTeal: #1a6b6b;
  --base-lightCyan: #e6faf8;
  --base-googleBlue: #6186ec;
  --base-googleRed: #cd523f;
  --base-googleYellow: #eabe43;
  --base-googleGreen: #63a45d;
  --base-googleStar: #fbbc04;
  --base-googleBadge: #1a73e8;
  --base-googleBadgeHover: #1557b0;
  --base-alertRed: #ff4d5a;
  --base-pink: #e8527a;
  --base-nearBlack: #1a1a1a;
  --base-pureBlack: #000000;
  --fs-3xs: 0.6875rem;
  --fs-xs: 0.75rem;
  --fs-2xs: 0.8125rem;
  --fs-sm: 0.875rem;
  --fs-sm2: 0.9375rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-lg2: 1.375rem;
  --fs-xl: 1.5rem;
  --fs-xl2: 1.75rem;
  --fs-2xl: 1.875rem;
  --fs-2xl2: 2rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 2.5rem;
  --fs-4xl2: 2.625rem;
  --fs-5xl: 3rem;
  --fs-6xl: 3.75rem;
  --fs-7xl: 4rem;
  --fs-8xl: 4.5rem;
  --fs-9xl: 5rem;
  --fs-display: 6.25rem;
  --font-outfit: Outfit;
  --font-zen: Zen Kaku Gothic New;
}

.p-faq__nav {
  width: 100%;
  max-width: 1472px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.5rem 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 10px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq__nav {
    padding: 30px 16px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    row-gap: 14px;
  }
}
.p-faq__nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: var(--base-gray);
}

.p-faq__main__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-faq__page__section {
  width: 100%;
}

.p-faq__page__item {
  width: 100%;
  max-width: 1472px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.p-faq__page__item .c-faq__accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.p-faq__page__item > .c-faq__accordion-header {
  gap: 26px;
}
@media screen and (max-width: 767px) {
  .p-faq__page__item {
    gap: 20px;
  }
  .p-faq__page__item .c-faq__accordion-header {
    gap: 10px;
  }
}

.p-faq__page__item-heading {
  font-weight: 700;
  font-size: var(--fs-xl);
  z-index: 2;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .p-faq__page__item-heading {
    line-height: 1.6;
  }
}

.p-faq__nav .c-faq__accordion-header {
  gap: 10px;
}

.p-faq__page__item .c-faq__accordion-header {
  gap: 20px;
}

.p-faq__nav-link {
  font-size: var(--fs-sm);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.p-faq__nav-link:hover {
  color: var(--base-lightBlue);
}

.p-faq__page__item__container {
  padding: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq__page__item__container {
    padding: 40px 0;
  }
}

.p-faq__page__item__container2 {
  background-image: url("../img/faq/bg_faq2.webp");
  background-size: cover;
  background-repeat: no-repeat;
}

.p-faq__page__item__container3 {
  background-image: url("../img/faq/bg_faq3.webp");
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.p-faq__page__item__container4 {
  background-image: url("../img/faq/bg_faq4.webp");
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.p-faq__page__item__container6 {
  background-image: url("../img/faq/bg_faq6.webp");
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.p-faq__page__item__container7 {
  background-image: url("../img/faq/bg_faq7.webp");
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.p-faq__page__item__container8 {
  background-image: url("../img/faq/bg_faq8.webp");
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.p-faq__page__item__container9 {
  overflow: hidden;
}

.p-faq__page__item__ribbon3 {
  position: absolute;
  right: 0;
  top: -80px;
}
@media screen and (max-width: 767px) {
  .p-faq__page__item__ribbon3 {
    right: -50px;
    top: -20px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.p-faq__page__item__container6 .p-faq__page__item__ribbon3 {
  width: min(74.1vw, 1423.375px);
  top: -80px;
}
@media screen and (max-width: 767px) {
  .p-faq__page__item__container6 .p-faq__page__item__ribbon3 {
    width: 100%;
    top: -20px;
  }
}

.p-faq__page__item__ribbon9 {
  position: absolute;
  right: 8%;
  top: -9%;
}
@media screen and (max-width: 767px) {
  .p-faq__page__item__ribbon9 {
    right: -50px;
    top: -50px;
  }
}

@media screen and (max-width: 767px) {
  .p-faq__accordion-icon {
    width: 50px;
  }
}/*# sourceMappingURL=faq.css.map */
