@charset "UTF-8";
/* ========================================================================
Globals - グローバルズ
======================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #ffffff;
  color: #444444;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

/* ========================================================================
	Layout - レイアウト
======================================================================== */
html {
  font-size: 62.5%;
}

.inner {
  width: min(100% - 2rem, 1140px);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .inner {
    width: min(100% - 4rem, 1140px);
  }
}

.pc-only {
  display: block;
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.section {
  padding-top: 140px;
}
@media (max-width: 767px) {
  .section {
    padding-top: 72px;
  }
}
.section-titleArea {
  display: grid;
  place-items: center;
  text-align: center;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .section-titleArea {
    margin-bottom: 2.4rem;
  }
}
.section__title {
  font-size: 40px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: inline-block;
  color: #3797AC;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .section__title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .section__title {
    font-size: 26px;
  }
}
.section__title--number {
  position: absolute;
  left: 0;
  top: -70px;
  color: #3797AC;
  font-size: 50px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .section__title--number {
    font-size: 32px;
    top: -44px;
  }
}
.section__subtitle {
  margin-top: 12px;
  font-size: 20px;
  text-align: center;
  font-weight: 500;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .section__subtitle {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .section__subtitle {
    font-size: 14px;
  }
}
.section__subText {
  max-width: 800px;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  text-align: center;
}
@media (max-width: 767px) {
  .section__subText {
    margin-top: 8px;
    font-size: 14px;
  }
}

.fixed-btn {
  width: 64px;
  height: 260px;
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 100;
  background-color: #ffffff;
  border: 2px solid #5CC2D7;
  border-radius: 12px 0 0 12px;
  box-shadow: 2px 6px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .fixed-btn {
    top: initial;
    bottom: 0;
    transform: translateY(200%);
    width: 100%;
    height: 64px;
    border-radius: 12px 12px 0 0;
    border-bottom: none;
    opacity: 0;
    visibility: hidden;
  }
  .fixed-btn.is-show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
.fixed-btn:hover {
  box-shadow: none;
  background-color: #5CC2D7;
}
.fixed-btn:hover .fixed-btn__text {
  color: #ffffff;
  background: transparent;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}
.fixed-btn:hover .fixed-btn__icon::before {
  background: url(../images/enpl-lp-icon-document-white.png) no-repeat center center/cover;
}
.fixed-btn__container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4%;
}
@media (max-width: 767px) {
  .fixed-btn__container {
    flex-direction: row;
  }
}
.fixed-btn__icon {
  width: 60%;
  height: 36px;
  position: relative;
}
.fixed-btn__icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/enpl-lp-icon-document-blue.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .fixed-btn__icon {
    width: 40px;
  }
}
.fixed-btn__text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.3rem;
  color: #5CC2D7;
  background: -webkit-linear-gradient(#64C0D3, #5AAEED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .fixed-btn__text {
    writing-mode: initial;
    text-orientation: initial;
    font-size: 16px;
  }
}

.cta {
  width: 100%;
  background-color: #64C0D3;
  padding: 3.6rem;
}
@media (max-width: 767px) {
  .cta {
    padding: 2.4rem;
  }
}
.cta-titleArea {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3%;
}
@media (max-width: 767px) {
  .cta-titleArea {
    flex-direction: column;
  }
}
.cta__title {
  font-size: 3.6rem;
  color: #ffffff;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .cta__title {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .cta__title {
    font-size: 1.8rem;
  }
}
.cta__title-logo > img {
  width: 280px;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .cta__title-logo > img {
    width: 240px;
  }
}
.cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  border-radius: 50px;
  transition: all 0.3s ease;
  width: 320px;
  max-width: 100%;
  height: 72px;
}
@media (max-width: 767px) {
  .cta-button {
    width: 280px;
    height: 56px;
  }
}
.cta-button:hover {
  box-shadow: none;
}
.cta-button.orange {
  background-color: #F96B0B;
}
.cta-button.orange:hover {
  background-color: #F99653;
}
.cta-button.blue {
  background-color: #5CC2D7;
}
.cta-button.blue:hover {
  opacity: 0.7;
}
.cta-button.navy {
  background-color: #0A4F75;
}
.cta-button.navy:hover {
  opacity: 0.7;
}
.cta-button.black {
  background-color: #2F3540;
}
.cta-button.black:hover {
  background-color: #3f444d;
}
.cta-button__text {
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
}
@media (max-width: 1080px) {
  .cta-button__text {
    font-size: 14px;
  }
}
.cta-button__arrow {
  width: 24px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .cta-button__arrow {
    width: 18px;
  }
}
.cta-wrapper {
  display: flex;
  margin-top: 3.2rem;
  justify-content: center;
  gap: 0 4%;
}
@media (max-width: 1080px) {
  .cta-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2.4rem 0;
  }
}
@media (max-width: 767px) {
  .cta-wrapper {
    margin-top: 16px;
    gap: 1.2rem 0;
  }
}
.cta-wrap {
  width: 32%;
  min-width: 320px;
  max-width: 400px;
  background-color: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 3.6rem;
  text-align: center;
}
@media (max-width: 1080px) {
  .cta-wrap {
    width: 100%;
    padding: 2.4rem;
    gap: 12px;
  }
}
.cta-wrap__title {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cta-wrap__title {
    font-size: 1.6rem;
  }
}
.cta-wrap__text {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cta-wrap__text {
    font-size: 1.2rem;
  }
}

.text-linkArea {
  margin-top: 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .text-linkArea {
    margin-top: 2.4rem;
  }
}
.text-linkArea.left {
  margin-top: 2.4rem;
  text-align: left;
}
@media (max-width: 767px) {
  .text-linkArea.left {
    margin-top: 1.2rem;
  }
}

.text-link {
  position: relative;
  transition: all 0.3s ease;
  text-decoration: underline;
}
.text-link:hover {
  text-decoration: none;
}
.text-link:hover .text-link__arrow::before {
  transform: translate(10%, -50%);
}
.text-link__arrow::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  transition: all 0.3s ease;
  background: url(../images/ep-lp-arrow-right-text-link.webp) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .text-link__arrow::before {
    width: 20px;
    height: 20px;
  }
}
.text-link__text {
  padding-left: 32px;
}
@media (max-width: 767px) {
  .text-link__text {
    padding-left: 28px;
    font-size: 1.4rem;
  }
}

/* ========================================================================
Globals - グローバルズ
======================================================================== */
/* ========================================================================
	Layout - レイアウト
======================================================================== */
.header {
  width: 100%;
  height: 100px;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .header {
    height: 80px;
  }
}
@media (max-width: 767px) {
  .header {
    height: 64px;
  }
}
.header-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logoArea {
  height: 100%;
  padding: 0 40px;
  background-color: #ffffff;
  border-radius: 0 0 30px 0;
  display: grid;
  place-items: center;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .header-logoArea {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .header-logoArea {
    padding: 0 12px;
  }
}
.header-logo {
  display: block;
}
.header-logo__img {
  width: 240px;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .header-logo__img {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .header-logo__img {
    width: 140px;
  }
}
.header-btnArea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5%;
  padding-right: 10%;
}
@media (max-width: 767px) {
  .header-btnArea {
    display: none;
  }
}
.header-cta-button {
  width: 246px;
  height: 54px;
}
@media (max-width: 1080px) {
  .header-cta-button {
    width: 220px;
    height: 48px;
  }
}
.header-cta-button__text {
  font-size: 16px;
}
@media (max-width: 1080px) {
  .header-cta-button__text {
    font-size: 14px;
  }
}
.header-cta-button__arrow {
  width: 10px;
}
@media (max-width: 1080px) {
  .header-cta-button__arrow {
    width: 8px;
  }
}

.drawer-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #ffffff;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 30%;
  box-shadow: 2px 6px 6px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .drawer-icon {
    top: 16px;
  }
}
@media (max-width: 767px) {
  .drawer-icon {
    width: 40px;
    height: 40px;
    top: 12px;
    right: 12px;
  }
}
.drawer-icon.clicked .drawer-icon__bar1,
.drawer-icon.clicked .drawer-icon__bar2 {
  left: 0;
}
.drawer-icon.clicked .drawer-icon__bar1::before, .drawer-icon.clicked .drawer-icon__bar1::after,
.drawer-icon.clicked .drawer-icon__bar2::before,
.drawer-icon.clicked .drawer-icon__bar2::after {
  top: 0;
}
.drawer-icon.clicked .drawer-icon__bar1::before,
.drawer-icon.clicked .drawer-icon__bar2::before {
  display: none;
}
.drawer-icon.clicked .drawer-icon__bar1::after,
.drawer-icon.clicked .drawer-icon__bar2::after {
  width: 100%;
}
.drawer-icon.clicked .drawer-icon__bar1 {
  top: 4.5px;
  transform: rotate(45deg);
}
.drawer-icon.clicked .drawer-icon__bar2 {
  bottom: 4.5px;
  transform: rotate(-45deg);
}
.drawer-icon__bars {
  width: 26px;
  height: 12px;
  position: relative;
}
@media (max-width: 767px) {
  .drawer-icon__bars {
    width: 22px;
  }
}
.drawer-icon__bar1, .drawer-icon__bar2 {
  width: 100%;
  height: 3px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}
.drawer-icon__bar1::before, .drawer-icon__bar1::after, .drawer-icon__bar2::before, .drawer-icon__bar2::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  background-color: #5CC2D7;
  transition: all 0.3s ease;
}
.drawer-icon__bar1::before, .drawer-icon__bar2::before {
  width: 3px;
  height: 100%;
  border-radius: 50%;
  left: 0;
}
.drawer-icon__bar1::after, .drawer-icon__bar2::after {
  width: 70%;
  border-radius: 10px;
  right: 0;
}
.drawer-icon__bar1 {
  top: 0;
}
.drawer-icon__bar2 {
  bottom: 0;
}
.drawer-content {
  width: 70%;
  height: 100%;
  padding: 120px 0;
  background-color: #5CC2D7;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(200%);
  transition: all 0.3s ease;
  z-index: -1;
  overflow-y: scroll;
}
@media (max-width: 767px) {
  .drawer-content {
    width: 90%;
    padding: 80px 0;
  }
}
.drawer-content.clicked {
  transform: translateX(0);
  z-index: 999;
}
.drawer-content__item {
  display: block;
  color: #ffffff;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  position: relative;
  transition: all 0.5s ease;
}
@media (max-width: 767px) {
  .drawer-content__item {
    font-size: 18px;
  }
}
.drawer-content__item:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ffffff;
  transition: all 0.5s ease;
  opacity: 0;
}
.drawer-content__item:hover {
  color: #5CC2D7;
}
.drawer-content__item:hover::after {
  width: 100%;
  opacity: 1;
}
.drawer-content__item:not(:first-child) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .drawer-content__item:not(:first-child) {
    margin-top: 12px;
  }
}
.drawer-content__cta {
  margin-top: 40px;
}
.drawer-button {
  margin: 0 auto;
}
.drawer-button:not(:first-child) {
  margin-top: 20px;
}
.drawer-background {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0;
  transition: all 1.2s ease;
}
.drawer-background.clicked {
  z-index: 998;
  opacity: 1;
}

.footer {
  padding-bottom: 20px;
  background-color: #222222;
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 12px;
  }
}
.footer-inner {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer-inner {
    max-width: 350px;
    margin: 0 auto;
    padding-top: 24px;
    flex-direction: column-reverse;
  }
}
.footer-left {
  width: 30%;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .footer-left {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .footer-left {
    width: 100%;
    margin-top: 32px;
    text-align: center;
  }
}
.footer-logoArea {
  width: 190px;
}
@media (max-width: 767px) {
  .footer-logoArea {
    margin: 0 auto;
  }
}
.footer-logo {
  width: 100%;
  display: grid;
  place-items: center;
}
.footer-logo__img {
  width: 100%;
}
.footer-logo__text {
  color: #ffffff;
  font-size: 14px;
  text-align: right;
}
.footer__info {
  margin-top: 16px;
  font-size: 12px;
  color: #ffffff;
}
.footer-links {
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 5%;
}
@media (max-width: 767px) {
  .footer-links {
    margin-top: 24px;
    justify-content: center;
  }
}
.footer-link {
  transition: all 0.3s ease;
}
.footer-link:hover {
  opacity: 0.7;
}
.footer-link__text {
  font-size: 12px;
  color: #ffffff;
}
.footer-security {
  display: flex;
  align-items: center;
  gap: 4%;
}
@media (max-width: 767px) {
  .footer-security {
    gap: 3%;
    justify-content: center;
  }
}
.footer-security__item:nth-child(1) {
  width: 140px;
}
@media (max-width: 767px) {
  .footer-security__item:nth-child(1) {
    width: 100px;
  }
}
.footer-security__item:nth-child(2) {
  width: 140px;
}
@media (max-width: 767px) {
  .footer-security__item:nth-child(2) {
    width: 100px;
  }
}
.footer-security__item:nth-child(3) {
  width: 64px;
}
@media (max-width: 767px) {
  .footer-security__item:nth-child(3) {
    width: 50px;
  }
}
.footer-security__img {
  width: 100%;
}
.footer-right {
  width: 45%;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .footer-right {
    width: 52%;
  }
}
@media (max-width: 767px) {
  .footer-right {
    width: 100%;
  }
}
.footer-nav {
  display: flex;
  justify-content: space-between;
  color: #ffffff;
}
@media (max-width: 767px) {
  .footer-nav {
    flex-direction: column;
  }
}
.footer-navBlock__child.not-first {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .footer-navBlock__child.not-first {
    margin-top: 0;
  }
}
.footer-navBlock__head {
  padding-bottom: 8px;
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px solid #ffffff;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .footer-navBlock__head {
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    position: relative;
  }
  .footer-navBlock__head::before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(90deg);
    background: url(../images/cf-lp-icon-arrow-right.webp) no-repeat center center/contain;
    transition: all 0.3s ease;
  }
  .footer-navBlock__head.active::before {
    transform: translateY(-50%) rotate(-90deg);
  }
}
.footer-ul {
  padding-top: 4px;
  list-style: inside;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .footer-ul {
    padding-top: 0;
    height: 0;
    opacity: 0;
    visibility: 0;
    transform: translateY(-5%);
  }
  .footer-ul.active {
    height: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    padding: 12px 0;
  }
}
.footer-list:not(:first-child) {
  margin-top: 4px;
}
.footer-list__item {
  font-size: 12px;
  transition: all 0.3s ease;
}
.footer-list__item:hover {
  opacity: 0.7;
}
.footer-copyright {
  margin-top: 24px;
  text-align: center;
  font-size: 10px;
  color: #ffffff;
}

/* ========================================================================
	Objects - オブジェクト
======================================================================== */
.hero {
  width: 100%;
  position: relative;
}
.hero::before {
  content: "";
  display: block;
  width: 100%;
  height: 64%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: -webkit-linear-gradient(#64C0D3, #5AAEED);
}
@media (max-width: 767px) {
  .hero::before {
    height: 50%;
  }
}
.hero-inner {
  padding: 20px 8% 40px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1920px) {
  .hero-inner {
    max-width: 1960px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .hero-inner {
    display: block;
    padding: 12px 5% 20px 5%;
  }
}
.hero-left {
  width: 50%;
  padding-top: 3.2rem;
}
@media (max-width: 767px) {
  .hero-left {
    width: 100%;
  }
}
.hero-head {
  color: #ffffff;
}
@media (max-width: 767px) {
  .hero-head {
    justify-content: center;
  }
}
.hero-head__title {
  font-size: 3.2vw;
  line-height: 1.4;
}
@media (min-width: 1920px) {
  .hero-head__title {
    font-size: 6.4rem;
  }
}
@media (max-width: 767px) {
  .hero-head__title {
    font-size: 6.8vw;
    line-height: 1.2;
  }
}
.hero-head__subtitle {
  margin-top: 16px;
  font-size: 1.6vw;
  font-weight: 500;
  text-wrap: nowrap;
}
@media (min-width: 1920px) {
  .hero-head__subtitle {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .hero-head__subtitle {
    font-size: 3.2vw;
  }
}
.hero-eyecatch {
  width: 92%;
  margin: 24px auto 0;
}
@media (max-width: 767px) {
  .hero-eyecatch {
    display: grid;
    place-content: center;
  }
}
.hero-ctaInquery {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .hero-ctaInquery {
    margin-top: 24px;
    display: grid;
    place-content: center;
  }
}
.hero-ctaInquery__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 410px;
  height: 8.3rem;
  border-radius: 60px;
  padding: 0px 7rem;
  background-color: #F96B0B;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  transition: 0.3s all;
}
@media (min-width: 1920px) {
  .hero-ctaInquery__btn {
    max-width: 480px;
    justify-content: center;
    gap: 14%;
  }
}
@media (min-width: 768px) and (max-width: 1079px) {
  .hero-ctaInquery__btn {
    padding: 0 3rem;
    justify-content: center;
    gap: 5%;
  }
}
@media (max-width: 767px) {
  .hero-ctaInquery__btn {
    max-width: 100%;
    width: 280px;
    height: 6.4rem;
    padding: 0px 3.2rem;
  }
}
.hero-ctaInquery__btn:hover {
  box-shadow: none;
  background-color: #F99653;
}
.hero-ctaInquery__btn-inner {
  color: #ffffff;
}
.hero-ctaInquery__btn-inner .text-sub {
  display: block;
  text-align: left;
  font-weight: 400;
  text-wrap: nowrap;
}
@media (max-width: 767px) {
  .hero-ctaInquery__btn-inner .text-sub {
    font-size: 1.2rem;
  }
}
.hero-ctaInquery__btn-inner .text-block {
  font-size: 2.5rem;
  font-weight: bold;
  text-wrap: nowrap;
}
@media (max-width: 767px) {
  .hero-ctaInquery__btn-inner .text-block {
    font-size: 1.8rem;
  }
}
.hero-ctaInquery__btn ._arrow {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
}
@media (max-width: 767px) {
  .hero-ctaInquery__btn ._arrow {
    width: 18px;
    height: 18px;
  }
}
.hero-ctaInquery__btn ._arrow::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/ep-lp-arrow-right-orange.webp) no-repeat center center/cover;
}
.hero-badge {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .hero-badge {
    margin-top: 24px;
  }
}
.hero-right {
  width: 42%;
}
@media (max-width: 767px) {
  .hero-right {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
}
.hero-right__img {
  width: 100%;
}
@media (max-width: 767px) {
  .hero-right__img {
    max-width: 400px;
  }
}

.logoArea {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .logoArea {
    padding-top: 32px;
  }
}
.logoArea-wrapper {
  display: grid;
  place-content: center;
}
.logoArea-ul {
  width: 100%;
  max-width: 820px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 767px) {
  .logoArea-ul {
    grid-template-columns: 1fr 1fr;
  }
}
.logoArea-list {
  height: 64px;
  text-align: center;
  display: grid;
  place-content: center;
}
@media (max-width: 767px) {
  .logoArea-list:nth-child(1) .logoArea-list__item {
    width: 72px;
  }
  .logoArea-list:nth-child(2) .logoArea-list__item {
    width: 132px;
  }
  .logoArea-list:nth-child(3) .logoArea-list__item {
    width: 120px;
  }
  .logoArea-list:nth-child(4) .logoArea-list__item {
    width: 56px;
  }
  .logoArea-list:nth-child(5) .logoArea-list__item {
    width: 54px;
  }
  .logoArea-list:nth-child(6) .logoArea-list__item {
    width: 118px;
  }
  .logoArea-list:nth-child(7) .logoArea-list__item {
    width: 98px;
  }
  .logoArea-list:nth-child(8) .logoArea-list__item {
    width: 96px;
  }
  .logoArea-list:nth-child(9) .logoArea-list__item {
    width: 118px;
  }
  .logoArea-list:nth-child(10) .logoArea-list__item {
    width: 112px;
  }
  .logoArea-list:nth-child(11) .logoArea-list__item {
    width: 164px;
  }
  .logoArea-list:nth-child(12) .logoArea-list__item {
    width: 108px;
  }
  .logoArea-list:nth-child(13) .logoArea-list__item {
    width: 126px;
  }
  .logoArea-list:nth-child(14) .logoArea-list__item {
    width: 98px;
  }
  .logoArea-list:nth-child(15) .logoArea-list__item {
    width: 98px;
  }
  .logoArea-list:nth-child(16) .logoArea-list__item {
    width: 102px;
  }
}
.logoArea-list__item {
  max-width: 100%;
}

.case {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .case {
    padding: 40px 0;
  }
}
.case-cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4%;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .case-cards {
    gap: 2%;
  }
}
@media (max-width: 767px) {
  .case-cards {
    max-width: 350px;
    margin: 0 auto;
    flex-direction: column;
    gap: 1.6rem 0;
  }
}
.case-card {
  border-radius: 1.2rem;
  overflow: hidden;
  width: 28%;
  box-shadow: 0 10px 40px rgba(100, 192, 211, 0.2);
  transition: all 0.3s ease;
}
.case-card:hover {
  opacity: 0.7;
  box-shadow: none;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .case-card {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .case-card {
    width: 100%;
  }
}
.case-card__imageArea {
  width: 100%;
  height: 192px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .case-card__imageArea {
    height: 164px;
  }
}
.case-card__image {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .case-card__image {
    width: 100%;
  }
}
.case-card__container {
  padding: 1.2rem;
  display: grid;
  gap: 1.2rem;
}
@media (max-width: 767px) {
  .case-card__container {
    gap: 0.8rem;
  }
}
.case-card__tagArea {
  display: flex;
  gap: 0.8rem;
}
.case-card__tag {
  display: inline-block;
  padding: 4px;
  background-color: #EEF8FB;
  font-size: 1.2rem;
  color: #666666;
  border-radius: 0.4rem;
}
.case-card__title {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .case-card__title {
    font-size: 1.3rem;
  }
}
.case-card__companyName {
  font-size: 1.4rem;
  color: #0A4F75;
}
@media (max-width: 767px) {
  .case-card__companyName {
    font-size: 1.3rem;
  }
}
.case-card__logoArea {
  height: 36px;
  margin-top: 0.8rem;
}
@media (max-width: 767px) {
  .case-card__logoArea {
    height: 32px;
  }
}
.case-card__logo {
  max-height: 90%;
}
.case-card__logo.acom {
  height: 28px;
}
.case-card__logo.hoshinoresorts {
  height: 28px;
}
.case-card__logo.Eisai {
  height: 40px;
}

.nav__title {
  font-size: 2.4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .nav__title {
    font-size: 1.8rem;
  }
}
.nav__title > strong {
  font-size: 4.4rem;
  color: #3797AC;
}
@media (max-width: 767px) {
  .nav__title > strong {
    font-size: 2.8rem;
  }
}
.nav-area {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .nav-area {
    margin-top: 2.4rem;
  }
}
.nav-ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 1.1%;
}
@media (max-width: 767px) {
  .nav-ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 350px;
    margin: 0 auto;
    gap: 16px 1.1%;
  }
}
.nav-list {
  width: 24%;
  min-width: 230px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .nav-list {
    width: 100%;
    min-width: initial;
  }
}
.nav-list__item {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: all 0.3s ease;
}
.nav-list__item::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/ep-lp-arrow-bottom-blue.webp) no-repeat center center/cover;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .nav-list__item::after {
    bottom: 6px;
  }
}
.nav-list__item:hover {
  box-shadow: none;
}
.nav-list__item:hover::after {
  bottom: 6px;
}
@media (max-width: 767px) {
  .nav-list__item:hover::after {
    bottom: 3px;
  }
}
.nav-list__head {
  padding: 8px 0;
  background-color: #5CC2D7;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .nav-list__head {
    padding: 6px 0;
    font-size: 16px;
  }
}
.nav-list__textArea {
  min-height: 100px;
  display: grid;
  place-items: center;
}
@media (max-width: 767px) {
  .nav-list__textArea {
    min-height: 80px;
  }
}
.nav-list__text {
  padding-bottom: 10px;
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .nav-list__text {
    font-size: 1.2rem;
  }
}

.features {
  padding-top: 0;
  padding-bottom: 120px;
}
.features-figureArea {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: right;
}
.features-figureArea > img {
  width: 100%;
  display: block;
}
.features-figureArea__note {
  font-size: 12px;
}
@media (max-width: 767px) {
  .features-figureArea__note {
    font-size: 1rem;
  }
}
.features-functions {
  margin-top: 80px;
  padding: 20px 0;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .features-functions {
    margin-top: 60px;
    padding: 12px 4px;
  }
}
.features-functions__titleArea {
  text-align: center;
}
.features-functions__title {
  padding: 2px 8px;
  display: inline-block;
  font-size: 3.2rem;
  color: #3797AC;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .features-functions__title {
    font-size: 20px;
    line-height: 1.4;
  }
}
.features-funcUl {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 3%;
}
@media (max-width: 767px) {
  .features-funcUl {
    max-width: 500px;
    margin: 32px auto 0;
    gap: 40px 4%;
  }
}
.features-funcList {
  width: 20%;
}
@media (max-width: 767px) {
  .features-funcList {
    width: 46%;
  }
}
.features-funcList__iconArea {
  width: 100%;
  margin: 0;
  text-align: center;
}
.features-funcList__icon {
  width: auto;
  height: 56px;
}
@media (max-width: 767px) {
  .features-funcList__icon {
    height: 42px;
  }
}
.features-funcList__head {
  margin: 8px 0;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .features-funcList__head {
    font-size: 15px;
  }
}
.features-funcList__text {
  font-size: 14px;
}
@media (max-width: 767px) {
  .features-funcList__text {
    font-size: 12px;
  }
}

.feature {
  padding-top: 140px;
}
@media (max-width: 767px) {
  .feature {
    padding-top: 80px;
  }
}

.feature01-content {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .feature01-content {
    max-width: 400px;
    margin: 2.4rem auto 0;
  }
}
.feature01-content__title {
  font-size: 2.4rem;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .feature01-content__title {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .feature01-content__title {
    font-size: 1.8rem;
  }
}
.feature01-content__text {
  margin-top: 12px;
  font-size: 1.5rem;
}
@media (max-width: 1080px) {
  .feature01-content__text {
    margin-top: 8px;
    font-size: 1.4rem;
  }
}
.feature01-contentUpper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .feature01-contentUpper {
    flex-direction: column;
  }
}
.feature01-contentUpper__textArea {
  width: 48%;
}
@media (max-width: 767px) {
  .feature01-contentUpper__textArea {
    width: 100%;
  }
}
.feature01-contentUpper__imageArea {
  width: 48%;
  padding: 2rem;
}
@media (max-width: 767px) {
  .feature01-contentUpper__imageArea {
    width: 100%;
  }
}
.feature01-contentLower {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .feature01-contentLower {
    margin-top: 24px;
  }
}
.feature01-contentLower__ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .feature01-contentLower__ul {
    flex-direction: column;
    gap: 24px 0;
  }
}
.feature01-contentLower__list {
  width: 48.5%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .feature01-contentLower__list {
    width: 100%;
    flex-direction: column-reverse;
  }
}
.feature01-contentLower__textArea {
  width: 48%;
}
@media (max-width: 767px) {
  .feature01-contentLower__textArea {
    width: 100%;
  }
}
.feature01-contentLower__imageArea {
  width: 48%;
  max-width: 240px;
  padding: 2rem;
}
@media (max-width: 767px) {
  .feature01-contentLower__imageArea {
    width: 100%;
  }
}

.feature02-cards {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px 2%;
}
@media (max-width: 1080px) {
  .feature02-cards {
    flex-direction: column;
    max-width: 500px;
    margin: 40px auto 0;
  }
}
.feature02-card {
  width: 46.3%;
}
@media (max-width: 1080px) {
  .feature02-card {
    width: 100%;
  }
}
.feature02-card__imgArea {
  height: 180px;
  margin: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .feature02-card__imgArea {
    height: auto;
  }
}
.feature02-card__img {
  width: auto;
  height: 100%;
}
@media (max-width: 767px) {
  .feature02-card__img {
    height: 120px;
  }
}
.feature02-card__title {
  margin-top: 16px;
  font-size: 22px;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .feature02-card__title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .feature02-card__title {
    margin-top: 8px;
    font-size: 18px;
  }
}
.feature02-card__text {
  min-height: 130px;
  margin-top: 16px;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .feature02-card__text {
    font-size: 15px;
  }
}
@media (max-width: 1080px) {
  .feature02-card__text {
    min-height: initial;
  }
}
@media (max-width: 767px) {
  .feature02-card__text {
    margin-top: 8px;
    font-size: 13px;
  }
}
.feature02-card__exArea {
  width: 100%;
  min-height: 140px;
  margin-top: 16px;
  padding: 20px 12px;
  background-color: #EEF8FB;
  border-radius: 8px;
}
@media (max-width: 1080px) {
  .feature02-card__exArea {
    min-height: initial;
  }
}
@media (max-width: 767px) {
  .feature02-card__exArea {
    margin-top: 8px;
    padding: 12px 6px;
  }
}
.feature02-card__exHead {
  font-weight: bold;
  color: #3797AC;
}
@media (max-width: 767px) {
  .feature02-card__exHead {
    font-size: 14px;
  }
}
.feature02-card__exUl {
  margin-top: 8px;
  list-style: disc outside;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .feature02-card__exUl {
    margin-top: 4px;
    padding-left: 12px;
  }
}
.feature02-card__exList {
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .feature02-card__exList {
    font-size: 12px;
  }
}
.feature02-card:nth-child(n+3) .feature01-card__exArea {
  min-height: 160px;
}
@media (max-width: 1080px) {
  .feature02-card:nth-child(n+3) .feature01-card__exArea {
    min-height: initial;
  }
}
.feature02-bottom {
  margin-top: 60px;
  padding: 60px 0;
  position: relative;
}
.feature02-bottom::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100%;
  background-color: #EEF8FB;
  border-radius: 60px 60px 0 0;
  margin: 0 calc(50% - 50vw);
}
@media (max-width: 767px) {
  .feature02-bottom {
    margin-top: 32px;
    padding: 32px 0;
  }
  .feature02-bottom::before {
    border-radius: 32px 32px 0 0;
  }
}
.feature02-bottom__title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .feature02-bottom__title {
    font-size: 20px;
  }
}
.feature02-bottom__subtitle {
  margin-top: 12px;
  text-align: center;
}
@media (max-width: 767px) {
  .feature02-bottom__subtitle {
    font-size: 14px;
  }
}
.feature02-bottomUl {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 4%;
}
@media (max-width: 767px) {
  .feature02-bottomUl {
    max-width: 500px;
    margin: 32px auto 0;
    display: block;
  }
}
.feature02-bottomList {
  width: 32%;
}
@media (max-width: 767px) {
  .feature02-bottomList {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  .feature02-bottomList:not(:first-child) {
    margin-top: 32px;
  }
}
.feature02-bottomList__iconArea {
  height: 200px;
  margin: 0;
  display: grid;
  place-items: center;
  position: relative;
}
.feature02-bottomList__iconArea::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-color: #ffffff;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .feature02-bottomList__iconArea {
    height: 180px;
  }
}
@media (max-width: 767px) {
  .feature02-bottomList__iconArea {
    height: 140px;
  }
}
.feature02-bottomList__icon {
  position: relative;
  z-index: 2;
  max-width: 100%;
}
.feature02-bottomList__icon01 {
  width: 198px;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .feature02-bottomList__icon01 {
    width: 178px;
  }
}
@media (max-width: 767px) {
  .feature02-bottomList__icon01 {
    width: 160px;
  }
}
.feature02-bottomList__icon02 {
  width: 320px;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .feature02-bottomList__icon02 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .feature02-bottomList__icon02 {
    width: 96%;
  }
}
.feature02-bottomList__icon03 {
  width: 192px;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .feature02-bottomList__icon03 {
    width: 144px;
  }
}
@media (max-width: 767px) {
  .feature02-bottomList__icon03 {
    width: 128px;
  }
}
.feature02-bottomList__head {
  margin-top: 12px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .feature02-bottomList__head {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .feature02-bottomList__head {
    font-size: 16px;
  }
}
.feature02-bottomList__text {
  margin-top: 12px;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .feature02-bottomList__text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .feature02-bottomList__text {
    font-size: 12px;
  }
}

.feature03-ul {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .feature03-ul {
    max-width: 400px;
    margin: 56px auto 0;
  }
}
.feature03-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .feature03-list {
    display: block;
  }
}
.feature03-list:not(:first-child) {
  margin-top: 40px;
}
.feature03-list:nth-child(2n) {
  flex-direction: row-reverse;
}
.feature03-list__imgArea {
  width: 29.6%;
  text-align: center;
}
@media (max-width: 767px) {
  .feature03-list__imgArea {
    width: 100%;
  }
}
.feature03-list__img {
  width: 100%;
  max-width: 100%;
}
.feature03-list__img01 {
  max-width: 360px;
}
@media (max-width: 767px) {
  .feature03-list__img01 {
    max-width: 200px;
  }
}
.feature03-list__img02 {
  max-width: 200px;
}
@media (max-width: 767px) {
  .feature03-list__img02 {
    max-width: 164px;
  }
}
.feature03-list__textArea {
  width: 64.8%;
}
@media (max-width: 767px) {
  .feature03-list__textArea {
    width: 100%;
  }
}
.feature03-list__head {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .feature03-list__head {
    text-align: center;
    font-size: 1.6rem;
  }
}
.feature03-list__subhead {
  margin-top: 12px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .feature03-list__subhead {
    margin-top: 6px;
    font-size: 14px;
  }
}
.feature03-ex {
  display: inline-block;
  background-color: #EEF8FB;
  border-radius: 12px;
  margin-top: 24px;
  padding: 8px 16px;
}
@media (max-width: 767px) {
  .feature03-ex {
    margin-top: 12px;
    padding: 8px 12px;
    font-size: 14px;
  }
}
.feature03-ex__head {
  font-weight: bold;
  color: #3797AC;
}
@media (max-width: 767px) {
  .feature03-ex__head {
    font-size: 1.4rem;
  }
}
.feature03-ex__ul {
  margin-top: 8px;
  list-style: disc outside;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .feature03-ex__ul {
    margin-top: 4px;
  }
}
.feature03-ex__list {
  font-size: 14px;
}
@media (max-width: 767px) {
  .feature03-ex__list {
    font-size: 13px;
  }
}

.feature04-figureArea {
  margin: 0 auto;
}
.feature04-figure__note {
  max-width: 980px;
  display: inline-block;
  font-size: 12px;
  text-align: right;
}
.feature04-ex {
  width: 60%;
  margin: 32px auto 0;
  padding: 16px 24px;
  background-color: #EEF8FB;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .feature04-ex {
    width: 100%;
    max-width: 350px;
    margin: 16px auto 0;
    padding: 8px 16px;
  }
}
.feature04-ex__head {
  font-weight: bold;
  color: #3797AC;
}
@media (max-width: 767px) {
  .feature04-ex__head {
    font-size: 15px;
  }
}
.feature04-ex__ul {
  margin-top: 8px;
  list-style: disc outside;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .feature04-ex__ul {
    margin-top: 4px;
  }
}
@media (max-width: 767px) {
  .feature04-ex__list {
    font-size: 14px;
  }
}
.feature04-ex__list:not(:first-child) {
  margin-top: 6px;
}
@media (max-width: 767px) {
  .feature04-ex__list:not(:first-child) {
    margin-top: 4px;
  }
}

.faq {
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .faq {
    padding-bottom: 60px;
  }
}
.faq-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0;
}
.faq-item:not(:first-child) {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .faq-item:not(:first-child) {
    margin-top: 16px;
  }
}
.faq-q {
  padding: 12px 40px 12px 18px;
  display: flex;
  gap: 12px;
  background-color: #EEF8FB;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .faq-q {
    padding: 8px 32px 8px 12px;
  }
}
.faq-q::after {
  content: "";
  width: 26px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%) rotate(-180deg);
  background: url(../images/cf-lp-faq-icon-arrow.png) no-repeat center center/contain;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .faq-q::after {
    width: 18px;
    height: 8px;
    right: 1.6%;
  }
}
.faq-q.active::after {
  transform: translateY(-50%) rotate(0deg);
}
.faq-q__head {
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #5CC2D7;
}
@media (max-width: 767px) {
  .faq-q__head {
    font-size: 18px;
  }
}
.faq-q__text {
  font-weight: bold;
}
@media (max-width: 767px) {
  .faq-q__text {
    font-size: 15px;
  }
}
.faq-a {
  opacity: 0;
  visibility: hidden;
  height: 0;
  display: flex;
  gap: 12px;
}
.faq-a.active {
  opacity: 1;
  visibility: visible;
  height: auto;
  padding: 12px 40px 12px 18px;
}
@media (max-width: 767px) {
  .faq-a.active {
    padding: 8px 32px 8px 12px;
  }
}
.faq-a__head {
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #5CC2D7;
}
.faq-a__text {
  font-weight: 500;
}
@media (max-width: 767px) {
  .faq-a__text {
    font-size: 15px;
  }
}
.faq-a__textLink {
  font-weight: bold;
  color: #5CC2D7;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .faq-a__textLink {
    font-size: 15px;
  }
}
.faq-a__textLink:hover {
  cursor: pointer;
  text-decoration: none;
}