@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 - レイアウト
======================================================================== */
.inner {
  width: min(100% - 2rem, 1100px);
  margin-inline: auto;
}

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

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

.cta {
  width: 100%;
  height: 280px;
  position: relative;
  display: grid;
  place-items: center;
}
@media (max-width: 767px) {
  .cta {
    height: auto;
    padding: 64px 0;
  }
}
.cta::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/pl-lp-cta-bg.webp") no-repeat center center/cover;
}
@media (max-width: 767px) {
  .cta::before {
    background: url("../images/pl-lp-cta-bg-sp.webp") no-repeat center center/cover;
  }
}
.cta-btn {
  max-width: 306px;
  display: grid;
  place-items: center;
  background-color: #F96B0B;
  border-radius: 40px;
  margin: 16px auto 0;
  padding: 16px 24px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in;
}
@media (max-width: 767px) {
  .cta-btn {
    max-width: 266px;
    padding: 16px 18px;
  }
}
.cta-btn:hover {
  background-color: #F99653;
  box-shadow: none;
}
.cta-btn__container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cta-btn__text {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
}
@media (max-width: 767px) {
  .cta-btn__text {
    font-size: 16px;
  }
}
.cta-btn__icon {
  width: 30px;
  height: 30px;
}
@media (max-width: 767px) {
  .cta-btn__icon {
    width: 24px;
    height: 24px;
  }
}
.cta-inner {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 5%;
  align-items: center;
}
@media (max-width: 767px) {
  .cta-inner {
    flex-direction: column-reverse;
  }
}
.cta-contents {
  max-width: 400px;
  text-align: center;
}
@media (max-width: 767px) {
  .cta-contents {
    max-width: 100%;
  }
}
.cta-comments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2%;
}
.cta-comment {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}
.cta__head {
  display: inline-block;
  margin-top: 16px;
  font-size: 26px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
}
@media (max-width: 767px) {
  .cta__head {
    font-size: 22px;
  }
}
.cta__head::before, .cta__head::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  position: absolute;
  bottom: 50%;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cta__head::before, .cta__head::after {
    width: 32px;
  }
}
.cta__head::before {
  left: -48px;
  transform: rotate(40deg);
}
@media (max-width: 767px) {
  .cta__head::before {
    left: -36px;
  }
}
.cta__head::after {
  right: -48px;
  transform: rotate(-40deg);
}
@media (max-width: 767px) {
  .cta__head::after {
    right: -36px;
  }
}
.cta-iconArea {
  width: 200px;
}
@media (max-width: 767px) {
  .cta-iconArea {
    width: 160px;
  }
}
.cta__icon {
  width: 100%;
}

.section {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .section {
    padding-top: 60px;
  }
}
.section-titleArea__bottomLine {
  width: 20px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 10px;
  background-color: #5CC2D7;
}
@media (max-width: 767px) {
  .section-titleArea__bottomLine {
    margin: 8px auto 0;
  }
}
.section__title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .section__title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .section__title {
    font-size: 28px;
  }
}
.section__title--en {
  margin-top: 12px;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .section__title--en {
    margin-top: 8px;
    font-size: 14px;
  }
}

.blue {
  color: #5CC2D7;
}

.floating-banner {
  width: 480px;
  height: 118px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(60px);
}
.floating-banner.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .floating-banner {
    display: none;
  }
}

.banner-link {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.banner-link:hover {
  opacity: 0.7;
}
.banner-link__image {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

/* 閉じるボタンのスタイル */
.close-button {
  position: absolute;
  top: -30px;
  right: 5px;
  padding: 4px;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  background-color: #ECECEC;
  border-radius: 50%;
}
.close-button:hover {
  color: #ffffff;
}

/* ========================================================================
Globals - グローバルズ
======================================================================== */
/* ========================================================================
	Layout - レイアウト
======================================================================== */
.header {
  width: 100%;
  height: 80px;
  display: grid;
  place-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #ffffff;
  border-bottom: 1px solid #90928F;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .header {
    height: 72px;
  }
}
@media (max-width: 767px) {
  .header {
    height: 64px;
  }
}
.header-inner {
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  width: 220px;
  display: grid;
  place-items: center;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .header-logo {
    width: 172px;
  }
}
@media (max-width: 767px) {
  .header-logo {
    width: 164px;
  }
}
.header-logo:hover {
  cursor: pointer;
  opacity: 0.7;
}
.header-logo__img {
  width: 100%;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .header-right {
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .header-right {
    display: none;
  }
}
.header-ul {
  display: flex;
  align-items: center;
}
.header-list:not(:first-child) {
  margin-left: 32px;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .header-list:not(:first-child) {
    margin-left: 16px;
  }
}
.header-list__item {
  font-weight: bold;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.header-list__item:hover {
  opacity: 0.5;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .header-list__item {
    font-size: 14px;
  }
}
.header-cta-btn {
  padding: 12px 24px;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .header-cta-btn {
    padding: 10px 18px;
  }
}
.header-cta-btn__text {
  font-size: 14px;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .header-cta-btn__text {
    font-size: 13px;
  }
}
.header-cta-btn__icon {
  width: 24px;
  height: 24px;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .header-cta-btn__icon {
    width: 20px;
    height: 20px;
  }
}

.drawer {
  display: none;
  visibility: hidden;
}
@media (max-width: 767px) {
  .drawer {
    display: block;
    visibility: visible;
  }
}
.drawer-icon {
  width: 42px;
  height: 42px;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 102;
  background-color: #5CC2D7;
  border-radius: 6px;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .drawer-icon {
    top: 15px;
  }
}
.drawer-icon.clicked .drawer-icon__bar1 {
  top: 10px;
  transform: rotate(-45deg);
}
.drawer-icon.clicked .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.clicked .drawer-icon__bar3 {
  top: 10px;
  transform: rotate(45deg);
}
.drawer-icon.clicked .drawer-icon__bar1.lp-bar,
.drawer-icon.clicked .drawer-icon__bar2.lp-bar,
.drawer-icon.clicked .drawer-icon__bar3.lp-bar {
  background-color: #444444;
}
.drawer-icon__bars {
  width: 18px;
  height: 18px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.drawer-icon__bar1, .drawer-icon__bar2, .drawer-icon__bar3 {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  transition: all 0.3s ease-in-out;
  border-radius: 16px;
}
.drawer-icon__bar1.lp-bar, .drawer-icon__bar2.lp-bar, .drawer-icon__bar3.lp-bar {
  background-color: #ffffff;
}
.drawer-icon__bar1 {
  top: 0;
}
.drawer-icon__bar2 {
  top: 6px;
}
.drawer-icon__bar3 {
  top: 12px;
}
.drawer-logo {
  width: 254px;
  display: block;
  margin: 18px 12px;
}
.drawer-logo__img {
  width: 100%;
}
.drawer-content {
  width: 100%;
  height: auto;
  position: fixed;
  top: 64px;
  right: 0;
  z-index: 0;
  transform: translateY(-200%);
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.drawer-content::before {
  content: "";
  display: block;
  width: 360px;
  height: 194px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("../../images/cs-drawer-bg.webp") no-repeat center center/cover;
}
.drawer-content.clicked {
  z-index: 101;
  transform: translateX(0);
}
.drawer-content__container {
  padding: 50px 20px 40px 20px;
  background-color: #EEF8FB;
}
.drawer-content__list {
  width: 100%;
  padding-left: 12px;
  position: relative;
}
.drawer-content__list::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 0;
  background-color: #444444;
}
.drawer-content__list:not(:first-child) {
  margin-top: 24px;
}
.drawer-content__item {
  width: 100%;
  height: 100%;
  display: block;
  font-size: 16px;
  font-weight: bold;
}
.drawer-cta-btn {
  width: 295px;
  max-width: 100%;
  height: 58px;
  background-color: #F96B0B;
  display: grid;
  place-items: center;
  margin: 60px auto 0;
  position: relative;
  border-radius: 40px;
}
.drawer-cta-btn__text {
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
}
.drawer-cta-btn__arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.drawer-background {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  transform: translateY(-200%);
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.drawer-background.clicked {
  transform: translateY(0%);
  z-index: 99;
}

.footer {
  margin-top: 20px;
  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;
  }
}
@media (max-width: 767px) {
  .footer-left {
    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-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-copyright {
  margin-top: 24px;
  text-align: center;
  font-size: 10px;
  color: #ffffff;
}

/* ========================================================================
	Objects - オブジェクト
======================================================================== */
.hero {
  position: relative;
  margin-top: 80px;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .hero {
    margin-top: 72px;
  }
}
@media (max-width: 767px) {
  .hero {
    margin-top: 64px;
  }
}
.hero-bg > img {
  width: 100%;
  height: 100%;
  max-height: 550px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
}
@media (min-width: 1740px) {
  .hero-bg > img {
    max-height: 580px;
  }
}
@media (min-width: 1840px) {
  .hero-bg > img {
    max-height: 605px;
  }
}
@media (max-width: 767px) {
  .hero-bg > img {
    height: 595px;
    max-height: initial;
  }
}
.hero-inner {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
  padding-top: 80px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  gap: 10%;
  position: relative;
  z-index: 2;
}
@media (min-width: 1770px) {
  .hero-inner {
    padding-bottom: 160px;
  }
}
@media (max-width: 1100px) {
  .hero-inner {
    gap: 5%;
  }
}
@media (max-width: 767px) {
  .hero-inner {
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 40px;
  }
}
.hero__head {
  font-size: 48px;
  line-height: 1.2;
  color: #ffffff;
}
@media (max-width: 767px) {
  .hero__head {
    font-size: 28px;
    line-height: 1.4;
  }
}
.hero__head--big {
  font-size: 64px;
  font-weight: 900;
}
@media (min-width: 1770px) {
  .hero__head--big {
    font-size: 80px;
  }
}
@media (max-width: 1100px) {
  .hero__head--big {
    font-size: 56px;
  }
}
@media (max-width: 940px) {
  .hero__head--big {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .hero__head--big {
    font-size: 42px;
  }
}
.hero-ul {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 767px) {
  .hero-ul {
    max-width: 230px;
    margin: 16px auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.hero-list {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-list__icon {
  width: 32px;
}
@media (max-width: 1100px) {
  .hero-list__icon {
    width: 24px;
  }
}
.hero__subCatch {
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  color: #192740;
}
@media (max-width: 1100px) {
  .hero__subCatch {
    font-size: 20px;
  }
}
@media (max-width: 940px) {
  .hero__subCatch {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .hero__subCatch {
    font-size: 20px;
  }
}
.hero__subCatch--big {
  font-family: "Roboto", sans-serif;
  font-size: 40px;
}
@media (min-width: 1770px) {
  .hero__subCatch--big {
    font-size: 48px;
  }
}
@media (max-width: 1100px) {
  .hero__subCatch--big {
    font-size: 36px;
  }
}
@media (max-width: 940px) {
  .hero__subCatch--big {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .hero__subCatch--big {
    font-size: 28px;
  }
}
.hero-cta {
  display: inline-block;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .hero-cta {
    width: 100%;
    margin-top: 40px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .hero-cta__btn {
    margin: 0 auto;
  }
}
.hero-imgArea {
  width: 400px;
  max-width: 100%;
  margin: 0;
}
@media (max-width: 1100px) {
  .hero-imgArea {
    width: 36%;
  }
}
@media (max-width: 767px) {
  .hero-imgArea {
    width: 220px;
    margin: 24px auto 0;
  }
}
.hero__img {
  width: 100%;
}
.hero-logo {
  text-align: center;
}
.hero-logo__headArea {
  text-align: center;
}
.hero-logo__head {
  font-size: 24px;
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .hero-logo__head {
    font-size: 16px;
  }
}
.hero-logo__head::before, .hero-logo__head::after {
  content: "";
  width: 70px;
  height: 3px;
  background-color: #444444;
  position: absolute;
  bottom: 50%;
}
@media (max-width: 767px) {
  .hero-logo__head::before, .hero-logo__head::after {
    width: 46px;
  }
}
.hero-logo__head::before {
  left: -80px;
  transform: rotate(40deg);
}
@media (max-width: 767px) {
  .hero-logo__head::before {
    left: -50px;
  }
}
.hero-logo__head::after {
  right: -80px;
  transform: rotate(-40deg);
}
@media (max-width: 767px) {
  .hero-logo__head::after {
    right: -50px;
  }
}
.hero-logo__head--big {
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-weight: bold;
  color: #5CC2D7;
}
@media (max-width: 767px) {
  .hero-logo__head--big {
    font-size: 30px;
  }
}
.hero-logo__imgArea {
  width: 100%;
  max-width: 1280px;
  margin-top: 14px;
  display: inline-block;
}
@media (max-width: 1280px) {
  .hero-logo__imgArea {
    display: none;
  }
}
.hero-logo__img {
  width: 100%;
  height: auto;
}
.hero-logo-swiper {
  max-width: 100%;
  overflow: hidden;
  margin-top: 14px;
  display: none;
}
@media (max-width: 1280px) {
  .hero-logo-swiper {
    display: block;
  }
}
.hero-logo-swiper-wrapper {
  /* スライドの動き等速 */
  transition-timing-function: linear !important;
}
.hero-logo-swiper-slide {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-swiper__img {
  width: 100%;
  height: auto;
  padding-right: 20px;
}

.issue-inner {
  padding-top: 100px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .issue-inner {
    padding-top: 50px;
  }
}
.issue__title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .issue__title {
    font-size: 24px;
  }
}
.issue-ul {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.issue-list {
  display: flex;
  justify-content: center;
  gap: 6%;
}
@media (max-width: 767px) {
  .issue-list {
    gap: 7%;
  }
}
.issue-list__icon {
  width: 72px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .issue-list__icon {
    width: 56px;
  }
}
.issue-list__text {
  padding: 12px 16px;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
  background-color: #EEF8FB;
  border-radius: 8px;
  position: relative;
}
@media (max-width: 767px) {
  .issue-list__text {
    padding: 8px;
    font-size: 13px;
    line-height: 1.6;
  }
}
.issue-list__text::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}
@media (max-width: 767px) {
  .issue-list__text::before {
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }
}
.issue-list:nth-child(2n+1) .issue-list__text::before {
  left: -30px;
  border-right: 30px solid #EEF8FB;
  border-left: 0;
}
@media (max-width: 767px) {
  .issue-list:nth-child(2n+1) .issue-list__text::before {
    left: -20px;
    border-right: 20px solid #EEF8FB;
  }
}
.issue-list:nth-child(2n) {
  flex-direction: row-reverse;
}
.issue-list:nth-child(2n) .issue-list__text::before {
  right: -30px;
  border-left: 30px solid #EEF8FB;
  border-right: 0;
}
@media (max-width: 767px) {
  .issue-list:nth-child(2n) .issue-list__text::before {
    right: -20px;
    border-left: 20px solid #EEF8FB;
  }
}

.solution {
  background-color: #EEF8FB;
}
.solution-inner {
  padding-top: 100px;
  padding-bottom: 32px;
}
@media (max-width: 767px) {
  .solution-inner {
    padding-top: 50px;
  }
}
.solution-cards {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 2.5%;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .solution-cards {
    gap: 24px 2%;
  }
}
@media (max-width: 767px) {
  .solution-cards {
    max-width: 350px;
    margin: 24px auto 0;
    flex-direction: column;
    gap: 8px 2.5%;
  }
}
.solution-card {
  width: 29%;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px 2%;
}
@media (max-width: 767px) {
  .solution-card {
    width: 100%;
    min-height: 160px;
    padding: 16px 2.5%;
    display: flex;
    align-items: center;
    gap: 5%;
  }
}
.solution-card__iconArea {
  width: 100%;
  height: 180px;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .solution-card__iconArea {
    width: 30%;
    height: auto;
  }
}
.solution-card__icon {
  height: auto;
}
.solution-card__icon01 {
  width: 107px;
}
@media (max-width: 767px) {
  .solution-card__icon01 {
    width: 82px;
  }
}
.solution-card__icon02 {
  width: 132px;
}
@media (max-width: 767px) {
  .solution-card__icon02 {
    width: 100px;
  }
}
.solution-card__icon03 {
  width: 180px;
}
@media (max-width: 767px) {
  .solution-card__icon03 {
    width: 132px;
  }
}
.solution-card__icon04 {
  width: 95px;
}
@media (max-width: 767px) {
  .solution-card__icon04 {
    width: 64px;
  }
}
.solution-card__icon05 {
  width: 109px;
}
@media (max-width: 767px) {
  .solution-card__icon05 {
    width: 80px;
  }
}
.solution-card__icon06 {
  width: 159px;
}
@media (max-width: 767px) {
  .solution-card__icon06 {
    width: 126px;
  }
}
.solution-card__text {
  padding-top: 24px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .solution-card__text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .solution-card__text {
    padding-top: 0;
    font-size: 14px;
    text-align: left;
  }
}

.case {
  background-color: #EEF8FB;
}
.case-emblem {
  width: 560px;
  max-width: 100%;
  margin: 40px auto 0;
}
@media (max-width: 767px) {
  .case-emblem {
    margin: 24px auto 0;
  }
}
.case-emblem__img {
  width: 100%;
}
.case-tags {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 5%;
}
@media (max-width: 767px) {
  .case-tags {
    max-width: 280px;
    margin: 24px auto 0;
    flex-direction: column;
    gap: 12px 0;
  }
}
.case-tag {
  padding: 6px 24px;
  border: 2px solid #CBAB50;
  border-radius: 30px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .case-tag {
    font-size: 14px;
    display: inline-block;
    text-align: center;
  }
}
.case-tag--big {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  line-height: 1;
  font-weight: bold;
  color: #CBAB50;
  background: linear-gradient(90deg, #CBAB50 10%, #D2BC65 20%, #CBAA4B 50%, #CEB45A 55%, #CAAB52 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .case-tag--big {
    font-size: 26px;
  }
}
.case__note {
  margin-top: 16px;
  font-size: 12px;
  text-align: center;
}
@media (max-width: 767px) {
  .case__note {
    font-size: 11px;
  }
}
.case-logos {
  display: grid;
  place-items: center;
  margin-top: 16px;
  padding: 32px 12px;
  border-radius: 12px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .case-logos {
    padding: 20px 6px;
  }
}
.case-logos__img {
  width: 886px;
  max-width: 90%;
}
@media (max-width: 767px) {
  .case-logos__img {
    width: 100%;
    max-width: 100%;
  }
}
.case-cards {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .case-cards {
    max-width: 350px;
    margin: 32px auto 0;
    flex-direction: column;
    gap: 24px 0;
  }
}
.case-card {
  width: 31.8%;
  min-height: 500px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  position: relative;
}
@media (max-width: 767px) {
  .case-card {
    width: 100%;
    min-height: 0;
  }
}
.case-card__deco {
  position: absolute;
  top: -10px;
  left: 0;
  width: 56;
}
@media (max-width: 767px) {
  .case-card__deco {
    width: 36px;
  }
}
.case-card__head {
  padding: 24px 3% 20px 3%;
  text-align: center;
}
@media (max-width: 767px) {
  .case-card__head {
    padding: 18px 3% 16px 3%;
  }
}
.case-card__logoArea {
  height: 56px;
}
@media (max-width: 767px) {
  .case-card__logoArea {
    height: 48px;
  }
}
.case-card__logo {
  width: auto;
  height: 100%;
}
.case-card__company {
  margin-top: 12px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .case-card__company {
    font-size: 13px;
  }
}
.case-card__eyecatch {
  width: 100%;
  height: 210px;
  object-fit: cover;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .case-card__eyecatch {
    height: 180px;
  }
}
.case-card__bottom {
  padding: 32px 4% 24px 4%;
}
@media (max-width: 767px) {
  .case-card__bottom {
    padding: 16px 3% 18px 3%;
  }
}
.case-card__text {
  font-weight: 500;
}
@media (max-width: 767px) {
  .case-card__text {
    font-size: 14px;
  }
}
.case-card__tagArea {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .case-card__tagArea {
    margin-top: 12px;
  }
}
.case-card__industry {
  display: inline-block;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  background-color: #000000;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .case-card__industry {
    padding: 2px 6px;
    font-size: 12px;
  }
}

.flow {
  background-color: #EEF8FB;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .flow {
    padding-bottom: 24px;
  }
}
.flow__text {
  margin-top: 24px;
  text-align: center;
  line-height: 2;
  font-weight: 500;
}
@media (max-width: 767px) {
  .flow__text {
    margin-top: 12px;
    font-size: 14px;
    text-align: left;
  }
}
.flow-container {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .flow-container {
    max-width: 350px;
    margin: 16px auto 0;
  }
}
.flow-imgArea {
  width: 100%;
}
@media (max-width: 767px) {
  .flow-imgArea {
    max-width: 280px;
    margin: 0 auto;
  }
}

.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%);
  background: url("../images/pl-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(180deg);
}
.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;
}

.about {
  background-color: #EEF8FB;
  padding-bottom: 40px;
}
.about__text {
  max-width: 920px;
  margin: 24px auto 0;
  text-align: center;
  line-height: 2;
  font-weight: 500;
}
@media (max-width: 767px) {
  .about__text {
    margin-top: 12px;
    font-size: 14px;
    text-align: left;
  }
}
.about-items {
  margin-top: 64px;
}
@media (max-width: 767px) {
  .about-items {
    max-width: 350px;
    margin: 40px auto 0;
  }
}
.about-item {
  background-color: #ffffff;
  padding: 24px 2%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .about-item {
    padding: 48px 3%;
  }
}
.about-item:not(:first-child) {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .about-item:not(:first-child) {
    margin-top: 24px;
  }
}
.about-item__num {
  width: 120px;
  height: 44px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .about-item__num {
    width: 100px;
    height: 36px;
  }
}
.about-item__num::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/pl-lp-about-item-tag-bg.webp") no-repeat center center/cover;
}
.about-item__numText {
  padding-right: 14px;
  position: relative;
  z-index: 2;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .about-item__numText {
    font-size: 24px;
  }
}
.about-item__title {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 767px) {
  .about-item__title {
    font-size: 18px;
  }
}
.about-item__title--blue {
  color: #5CC2D7;
  font-weight: bold;
}
.about .about01 {
  margin-top: 40px;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .about .about01 {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .about .about01 {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
  }
}
.about .about01-wrap {
  text-align: center;
}
.about .about01-items {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 4%;
}
@media (max-width: 767px) {
  .about .about01-items {
    flex-direction: column;
  }
}
.about .about01-item {
  display: flex;
  align-items: center;
  gap: 4%;
}
@media (max-width: 767px) {
  .about .about01-item {
    flex-direction: column;
  }
  .about .about01-item:not(:first-child) {
    margin-top: 24px;
  }
}
.about .about01-item__tag {
  padding: 8px;
  border-radius: 12px;
  font-weight: bold;
  color: #ffffff;
  display: inline-block;
}
@media (max-width: 767px) {
  .about .about01-item__tag {
    font-size: 13px;
  }
}
.about .about01-item__tag.before {
  background-color: #90928F;
}
.about .about01-item__tag.after {
  background-color: #5CC2D7;
}
.about .about01-item__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about .about01-item__head {
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .about .about01-item__head {
    font-size: 14px;
  }
}
.about .about01-item__iconArea {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
}
@media (max-width: 767px) {
  .about .about01-item__iconArea {
    width: 80px;
    height: 80px;
  }
}
.about .about01-item__iconArea.after {
  width: 120px;
  height: 120px;
}
@media (max-width: 767px) {
  .about .about01-item__iconArea.after {
    width: 100px;
    height: 100px;
  }
}
.about .about01-item__icon {
  width: 60px;
  height: auto;
}
.about .about01-item__icon01 {
  width: 61px;
}
@media (max-width: 767px) {
  .about .about01-item__icon01 {
    width: 48px;
  }
}
.about .about01-item__icon02 {
  width: 64px;
}
@media (max-width: 767px) {
  .about .about01-item__icon02 {
    width: 50px;
  }
}
.about .about01-item__icon03 {
  width: 70px;
}
@media (max-width: 767px) {
  .about .about01-item__icon03 {
    width: 60px;
  }
}
.about .about01-item__icon04 {
  width: 78px;
}
@media (max-width: 767px) {
  .about .about01-item__icon04 {
    width: 64px;
  }
}
.about .about01-item__icon05 {
  width: 64px;
}
@media (max-width: 767px) {
  .about .about01-item__icon05 {
    width: 52px;
  }
}
.about .about01-item__icon06 {
  width: 64px;
}
@media (max-width: 767px) {
  .about .about01-item__icon06 {
    width: 52px;
  }
}
.about .about01-item__icon07 {
  width: 104px;
}
@media (max-width: 767px) {
  .about .about01-item__icon07 {
    width: 86px;
  }
}
.about .about01-item__icon08 {
  width: 90px;
}
@media (max-width: 767px) {
  .about .about01-item__icon08 {
    width: 72px;
  }
}
.about .about01-item__icon09 {
  width: 90px;
}
@media (max-width: 767px) {
  .about .about01-item__icon09 {
    width: 72px;
  }
}
.about .about01-item__arrow {
  width: 16px;
  padding-top: 32px;
}
@media (max-width: 767px) {
  .about .about01-item__arrow {
    width: 14px;
    padding-top: 0;
    transform: rotate(90deg);
  }
}
.about .about01-arrowBottom {
  margin: 16px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .about .about01-arrowBottom {
    display: none;
  }
}
.about .about01-arrowBottom__img {
  width: 90px;
}
.about .about02-tags {
  max-width: 430px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  gap: 12px 4%;
  flex-wrap: wrap;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .about .about02-tags {
    margin: 32px auto 0;
  }
}
@media (max-width: 767px) {
  .about .about02-tags {
    margin: 24px auto 0;
    gap: 8px 4%;
  }
}
.about .about02-tag {
  min-width: 90px;
  padding: 2px 12px;
  text-align: center;
  font-weight: 500;
  color: #ffffff;
  background-color: #5CC2D7;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .about .about02-tag {
    font-size: 13px;
  }
  .about .about02-tag:nth-child(n+7) {
    display: none;
  }
}
.about .about02-imgArea {
  width: 630px;
  max-width: 100%;
  margin: 32px auto 0;
}
.about .about02__img {
  width: 100%;
}
.about .about03-steps {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 2.4%;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .about .about03-steps {
    margin-top: 32px;
    gap: 24px 4%;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .about .about03-steps {
    margin-top: 24px;
    flex-direction: column;
  }
}
.about .about03-step {
  width: 20.5%;
  padding: 0 1%;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .about .about03-step {
    min-width: 240px;
  }
}
.about .about03-step:not(:first-child) .about03-step__imgArea {
  position: relative;
}
.about .about03-step:not(:first-child) .about03-step__imgArea::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -14%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 16px solid #5CC2D7;
  border-right: 0;
}
@media (max-width: 767px) {
  .about .about03-step {
    width: 100%;
    padding: 0 1%;
  }
  .about .about03-step:not(:first-child) {
    margin-top: 16px;
    padding-top: 8px;
  }
  .about .about03-step:not(:first-child)::before {
    content: "";
    display: block;
    position: absolute;
    top: -5%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 12px solid #5CC2D7;
  }
  .about .about03-step:not(:first-child) .about03-step__imgArea::before {
    display: none;
  }
}
.about .about03-step__upper {
  display: flex;
  justify-content: center;
  gap: 4%;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .about .about03-step__upper {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .about .about03-step__upper {
    width: 195px;
    margin: 0 auto;
    justify-content: flex-start;
    gap: 5%;
  }
}
.about .about03-step__headArea {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about .about03-step__headText {
  font-size: 18px;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .about .about03-step__headText {
    font-family: 16px;
  }
}
.about .about03-step__headNum {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .about .about03-step__headNum {
    font-size: 24px;
  }
}
.about .about03-step__title {
  font-size: 14px;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .about .about03-step__title {
    font-size: 13px;
  }
}
.about .about03-step__imgArea {
  margin-top: 16px;
  display: grid;
  place-items: center;
}
@media (max-width: 767px) {
  .about .about03-step__imgArea {
    margin: 12px;
  }
}
.about .about03-step__img {
  max-width: 100%;
  height: auto;
}
.about .about03-step__img01 {
  width: 148px;
}
@media (max-width: 767px) {
  .about .about03-step__img01 {
    width: 128px;
  }
}
.about .about03-step__img02 {
  width: 228px;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .about .about03-step__img02 {
    width: 204px;
  }
}
@media (max-width: 767px) {
  .about .about03-step__img02 {
    width: 164px;
  }
}
.about .about03-step__img03 {
  width: 142px;
}
@media (max-width: 767px) {
  .about .about03-step__img03 {
    width: 132px;
  }
}
.about .about03-step__img04 {
  width: 144px;
}
@media (max-width: 767px) {
  .about .about03-step__img04 {
    width: 132px;
  }
}
.about .about04-cards {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 4%;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .about .about04-cards {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .about .about04-cards {
    margin-top: 24px;
    gap: 16px 4%;
  }
}
.about .about04-card {
  width: 27.2%;
  min-height: 210px;
  padding: 24px 1.5%;
  background-color: #EEF8FB;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .about .about04-card {
    width: 100%;
    min-height: initial;
    padding: 12px 1.5%;
  }
}
.about .about04-card__textArea {
  height: 80px;
  display: grid;
  place-items: center;
  text-align: center;
}
@media (max-width: 767px) {
  .about .about04-card__textArea {
    height: 56px;
  }
}
.about .about04-card__text {
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .about .about04-card__text {
    font-size: 14px;
  }
}
.about .about04-card__iconArea {
  margin-top: 16px;
  display: grid;
  place-items: center;
}
@media (max-width: 767px) {
  .about .about04-card__iconArea {
    margin-top: 8px;
  }
}
.about .about04-card__icon {
  height: auto;
}
.about .about04-card__icon01 {
  width: 140px;
}
.about .about04-card__icon02 {
  width: 200px;
}
.about .about04-card__icon03 {
  width: 140px;
}
.about .about04-card__icon04 {
  width: 52px;
}
.about .about04-card__icon05 {
  width: 75px;
}
.about .about04-card__icon06 {
  width: 64px;
}