/* FLOCCS: foundation */
:root {
  --color-main: #2091D1;
  /* メイン */
  --color-accent: #09348B;
  /* アクセント */
  --color-bg-blue: #E9F4FA;
  /* 背景ブルー */
  --color-text: #111;
  --color-muted: #666;
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 15px;
  --shadow-sm: 0 0 10px rgba(0, 0, 0, .05);
  --shadow-md: 0 0 10px rgba(0, 0, 0, .1);
  --ff-noto: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  --ff-lato: "Lato", sans-serif;
  --ff-yu: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  --ff-outfit: "Outfit", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  font-size: 16px;
  font-weight: 500;
}

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

body {
  font-family: var(--ff-noto);
  color: var(--color-text);
  background: #fff;
}

main {
  padding-top: 100px;
}

strong {
  font-weight: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease-in-out;
}

a:hover {
  opacity: 0.7;
  color: inherit;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/* FLOCCS: layout */
.l-body {
  min-width: 320px;
}

.l-container {
  width: 1160px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

/* FLOCCS: object - components */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  border: none;
  width: fit-content;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
  min-width: 200px;
}

.c-btn--primary {
  background: var(--color-main);
  color: #fff;
}

.c-btn--accent {
  background: var(--color-accent);
  color: #fff;
}

.c-btn--white {
  background: #fff;
  color: var(--color-main);
}

.c-btn--ghost {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.c-btn--outline {
  border: 2px solid var(--color-main);
  color: var(--color-main);
  background: #fff;
}

.c-btn--outlineWhite {
  border: 2px solid #fff;
  color: var(--color-main);
  background: #fff;
}

.c-btn--primary:hover,
.c-btn--accent:hover,
.c-btn--ghost:hover {
  color: #fff;
}

.c-btn--white:hover,
.c-btn--outline:hover,
.c-btn--outlineWhite:hover {
  color: var(--color-main);
}

.c-btn--withDot {
  justify-content: space-between;
}

.c-btn--withDot::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
  transition: all 0.2s;
}

.c-btn--withDot:hover::after {
  transform: translateX(4px);
}

.c-btn__icon {
  width: 16px;
  object-fit: contain;
}

.c-sectionHead {
  text-align: left;
  margin-bottom: 60px;
}

.c-sectionHead--withDesc {
  margin-bottom: 0;
}

.c-sectionHead--invert {
  margin-bottom: 35px;
}

.c-sectionHead--invert .c-sectionHead__title,
.c-sectionHead--invert .c-sectionHead__sub {
  color: #fff;
}

.c-sectionHead__title {
  font-weight: 700;
  font-size: 3.25rem;
  color: var(--color-main);
  margin: 0;
  line-height: 1;
}

.c-sectionHead__sub {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  color: var(--color-main);
  font-family: var(--ff-lato);
  font-weight: 900;
  font-size: 1.0625rem;
  letter-spacing: .02em;
}

.c-sectionHead__sub::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-main);
}

.c-sectionHead--invert .c-sectionHead__sub::before {
  background: #fff;
}

/* Header */
.c-header {
  height: 100px;
  position: fixed;
  z-index: 100;
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.c-header .l-container {
  width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.c-header__logoImg {
  height: 50px;
  width: auto;
}

.c-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.c-header__hamburgerLine {
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.c-header__hamburger[aria-expanded="true"] .c-header__hamburgerLine:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.c-header__hamburger[aria-expanded="true"] .c-header__hamburgerLine:nth-child(2) {
  opacity: 0;
}

.c-header__hamburger[aria-expanded="true"] .c-header__hamburgerLine:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.c-header__nav {
  display: flex;
  gap: 20px;
  font-size: 0.9375rem;
}

.c-header__nav .c-btn {
  min-width: auto;
  font-size: 0.875rem;
}

.c-header__list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-header__item {
  height: 60px;
  position: relative;
}

.c-header__item:hover .c-header__sub-list {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s, visibility 0.3s;
}

.c-header__link {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  padding: 0 15px;
  white-space: nowrap;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.c-header__link i {
  color: var(--color-main);
  font-size: 1.25rem;
  padding-left: 4px;
}

.c-header__sub-list {
  background: #FFF;
  width: 170px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  position: absolute;
  margin: 0;
  list-style: none;
  z-index: 99;
  text-align: left;
  border-radius: 5px;
  border-radius: 5px;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1)) drop-shadow(0 0 1px #CCCCCC);
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1)) drop-shadow(0 0 1px #CCCCCC);
  padding: 5px 0;
}

.c-header__sub-list::before {
  background-color: #FFF;
  content: "";
  height: 8px;
  position: absolute;
  width: 24px;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  left: 43%;
  top: -8px;
}

.c-header__sub-item {
  width: auto;
  height: auto;
  display: block;
  position: relative;
}

.c-header__sub-link {
  padding: 8px 16px;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}

.c-header__sub-link::after {
  font-family: FontAwesome;
  content: "\f0da";
  color: var(--color-main);
}

.c-header__navActions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Hero */
.p-hero {
  position: relative;
  padding: 70px 0 50px;
}

.p-hero__bg {
  position: absolute;
  inset: 0 0 auto 0;
  height: 70%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .2) 100%), var(--color-main);
}

.p-hero .l-container {
  width: 1292px;
}

.p-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.p-hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

.p-hero__head {
  color: #fff;
}

.highlight-anime {
  margin: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-main);
}

.p-hero__lead {
  font-size: 4rem;
}

.p-hero__lead small {
  font-size: 3.5rem;
}

.highlight-anime span {
  display: inline-block;
  padding: 0 5px 4px;
  position: relative;
  background: #fff;
}

.highlight-anime span:first-child {
  margin-bottom: 1.25rem;
}

.highlight-anime span,
.highlight-anime span::after {
  -webkit-animation-delay: var(--animation-delay, 2s);
  animation-delay: var(--animation-delay, 2s);
  /* アニメーションの開始タイミング */
  -webkit-animation-iteration-count: var(--iterations, 1);
  animation-iteration-count: var(--iterations, 1);
  /* 再生される回数 */
  -webkit-animation-duration: var(--duration, 800ms);
  animation-duration: var(--duration, 800ms);
  /* 完了するまでの所要時間 */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  /* 実行の前後 */
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  /* タイミングの指定 */
}

.highlight-anime.scroll-in span {
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  -webkit-animation-name: clip-text;
  animation-name: clip-text;
  white-space: nowrap;
}

.highlight-anime.scroll-in span::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--main);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  pointer-events: none;
  -webkit-animation-name: text-revealer;
  animation-name: text-revealer;
}

@keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes text-revealer {

  0%,
  50% {
    transform-origin: 0 50%;
  }

  60%,
  100% {
    transform-origin: 100% 50%;
  }

  60% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

.p-hero__body {
  color: #fff;
  max-width: 800px;
}

.p-hero__sub {
  margin-bottom: 25px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75;
}

.p-hero__actions {
  display: flex;
  gap: 20px;
}

.p-hero__images {
  width: 100%;
  max-width: 1252px;
  margin: 0 auto;
}

.p-hero__img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-hero__fixed {
  position: fixed;
  right: 0;
  top: 80vh;
  border-radius: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  box-shadow: var(--shadow-md);
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Metrics */
.p-metrics {
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(32, 145, 209, .2) 100%), #E9F4FA;
  padding: 100px 0 120px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.p-metrics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px 40px;
}

.p-metrics__card {
  background: rgba(32, 145, 209, .8);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 40px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.p-metrics__icon {
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-metrics__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-metrics__label {
  font-family: var(--ff-yu);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
}

.p-metrics__value {
  font-family: var(--ff-lato);
  font-weight: 700;
  font-size: 3.75rem;
  line-height: 1;
}

.p-metrics__value small {
  font-size: 2.5rem;
  font-weight: 700;
}

/* About */
.p-about {
  width: 1388px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0 100px;
}

.p-about__image {
  width: 53.4%;
}

.p-about__content {
  max-width: 578px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
}

.p-about .c-sectionHead {
  margin-bottom: 0;
}

.p-about__catch {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1;
}

.p-about__desc {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 2;
}

.p-about__desc u {
  text-decoration-color: rgba(32, 145, 209, 0.5);
  text-decoration-line: underline;
  text-decoration-thickness: 6px;
  text-underline-offset: -2px;
  text-decoration-skip-ink: none;
}

.p-about__desc strong {
  background: var(--color-main);
  color: #fff;
  padding: 0 2px;
  font-size: 1.5rem;
}

.p-about__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Feature Boxes */
.p-features {
  background: #F5F5F5;
  padding: 80px 0 100px;
}

.p-features__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.p-features .c-sectionHead {
  flex-shrink: 0;
}

.p-features__desc {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
}

.p-featureBox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}

.p-featureBox--reverse {
  direction: rtl;
}

.p-featureBox--reverse>* {
  direction: ltr;
}

.p-featureBox__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.p-featureBox__title {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.p-featureBox__text {
  line-height: 1.75;
  margin-bottom: 20px;
}

.p-featureList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 15px;
}

.p-featureList__item {
  display: flex;
  align-items: start;
  gap: 5px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 5px;
  font-weight: 700;
}

.p-featureList__check {
  width: 32px;
  height: 24px;
  flex-shrink: 0;
}

/* Reviews */
.p-reviews {
  padding: 150px 0;
}

.p-reviews__container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 65px;
  align-items: start;
}

.p-reviews__head {
  display: grid;
  gap: 35px;
}

.p-reviews__desc {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
}

.p-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.p-review {
  background: var(--color-bg-blue);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.p-review__text {
  font-size: 0.875rem;
  line-height: 1.7;
}

.p-review__profile {
  margin-top: auto;
  height: 50px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.p-review__avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.p-review__name {
  color: var(--color-main);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2;
  margin-bottom: 5px;
}

.p-review__note {
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* Flow */
.p-flow {
  background: url(../img/flow-bg.png) right bottom 40px / 470px auto no-repeat, var(--color-bg-blue);
  padding: 80px 0 100px;
  position: relative;
}

.p-flow__head {
  display: grid;
  gap: 35px;
  margin-bottom: 60px;
}

.p-flow__desc {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
}

.p-flow__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
  position: relative;
}

.p-flow__list::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 25px;
  bottom: 76px;
  width: 2px;
  background: #e0e0e0;
}

.p-flow__item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 25px;
  align-items: start;
  position: relative;
}

.p-flow__no {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background: var(--color-main);
  color: #fff;
  border-radius: 50%;
  font-family: var(--ff-outfit);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.p-flow__box {
  border-bottom: 1px solid #ccc;
  padding: 25px 30px;
  background: rgba(255, 255, 255, .9);
  max-width: 850px;
}

.p-flow__item:first-child .p-flow__box {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.p-flow__item:last-child .p-flow__box {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom: none;
}

.p-flow__box h3 {
  margin-bottom: 15px;
  color: var(--color-main);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}

.p-flow__box p {
  font-size: 1.125rem;
}

/* FAQ */
.p-faq {
  padding: 80px 20px;
}

.p-faq__wrapper {
  background: linear-gradient(to right, #F5F5F5 0%, #DDDDDD 100%);
  border-radius: 50px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 60px 20px;
}

.p-faq .l-container {
  display: flex;
  gap: 80px;
}

.p-faq__head {
  display: grid;
  gap: 35px;
  margin-bottom: 60px;
}

.p-faq__desc {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
}

.p-faq__list {
  display: grid;
  gap: 20px;
  max-width: 580px;
}

.p-faq__item {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.p-faq__item.is-open .p-faq__icon::after {
  height: 0;
}

.p-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  width: 100%;
  padding: 16px;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  text-align: left;
  font-size: 1rem;
  position: relative;
}

.p-faq__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 24px;
  height: 24px;
  background: var(--color-main);
  border-radius: 50%;
}

.p-faq__icon:before,
.p-faq__icon:after {
  position: absolute;
  content: "";
  margin: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}

.p-faq__icon::before {
  border-top: 2px solid #FFF;
  width: 15px;
  height: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.p-faq__icon::after {
  border-left: 2px solid #FFF;
  width: 0;
  height: 15px;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-out, padding .3s ease-out;
  padding: 0 16px;
  color: #333;
}

.p-faq__item.is-open .p-faq__a {
  max-height: 500px;
  padding: 0 16px 16px;
}

.p-faq__footer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.p-faq__footerText {
  font-weight: 500;
  line-height: 1.25;
}

.p-faq__image {
  max-width: 500px;
  height: 742px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.p-faq__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Banner */
.p-banner {
  padding: 80px 0;
}

.p-banner__inner {
  background: #e8e8e8;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

.p-banner__text {
  color: #999;
  font-size: 1.25rem;
}

/* Contact */
.p-contact {
  background: url(../img/inquiry-bg.jpg) no-repeat center/cover;
  color: #fff;
  padding: 140px 0;
}

.p-contact__container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
  z-index: 1;
}

.p-contact__lead {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
  text-shadow: 0 0 10px rgba(0, 0, 0, .4);
  margin-bottom: 20px;
}

.p-contact__infos {
  display: flex;
  gap: 20px;
}

.p-contact__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-contact__info:first-child {
  padding-right: 20px;
  border-right: 1px solid #FFF;
}

.p-contact__chip {
  background: #fff;
  color: var(--color-main);
  padding: 2px 6px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  width: fit-content;
}

.p-contact__tel,
.p-contact__mail {
  background: #fff;
  color: var(--color-main);
  font-weight: 700;
  line-height: 1;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.p-contact__tel {
  font-size: 1.5rem;
}

.p-contact__mail {
  font-size: 1.125rem;
}

.p-contact__telIcon,
.p-contact__mailIcon {
  width: 24px;
  height: 24px;
}

.p-contact__note {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-shadow: 0 0 4px rgba(0, 0, 0, .4);
}

.p-contact__box {
  background: #fff;
  color: #000;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
}

.p-contact__boxTitle {
  margin: 0;
  font-size: 2rem;
  text-align: center;
  letter-spacing: .04em;
}

.p-contact__boxText {
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}

.p-contact__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Column */
.p-column {
  background: var(--color-bg-blue);
  padding: 80px 0 120px;
}

.p-column__inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  gap: 65px;
}

.p-column__intro {
  display: grid;
  gap: 25px;
  justify-items: start;
  flex: 0 0 468px;
}

.p-column__head {
  display: grid;
  gap: 35px;
  margin-bottom: 60px;
}

.p-column__desc {
  font-weight: 700;
}

.p-column__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.p-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.p-card__link {
  display: flex;
}

.p-card__thumb {
  width: 230px;
  flex-shrink: 0;
  aspect-ratio: 230/167;
}

.p-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-card__body {
  padding: 20px;
}

.p-card__date {
  color: var(--color-main);
  font-weight: 900;
  font-family: var(--ff-lato);
  font-size: 0.8125rem;
}

.p-card__title {
  margin: 6px 0;
  font-weight: 700;
  font-size: 1.125rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-card__text {
  margin: 0;
  font-size: 0.9375rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTA cards */
.p-ctaCard .l-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 50px 0 75px;
}

.c-ctaCard {
  width: 100%;
  height: 200px;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.c-ctaCard:hover {
  color: #fff;
}

.c-ctaCard__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;

}

.c-ctaCard--download {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .2) 100%), var(--color-accent);
}

.c-ctaCard--contact {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .2) 100%), var(--color-main);
}

.c-ctaCard__icon {
  flex-shrink: 0;
}

.c-ctaCard--download .c-ctaCard__icon img {
  width: 91px;
  height: 120px;
}

.c-ctaCard--contact .c-ctaCard__icon img {
  width: 120px;
  height: 108px;
}

.c-ctaCard__icon img {
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.c-ctaCard__title {
  font-size: 1.5rem;
  font-weight: 900;
}

.c-ctaCard__text {
  margin-top: 6px;
  font-weight: 500;
}

.c-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: #000;
  font-size: 0.75rem;
  font-weight: 500;
}

.c-breadcrumb__list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 0;
  list-style: none;
  color: inherit;
}

.c-breadcrumb__list.l-container {
  width: 1150px;
}

.c-breadcrumb__list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}

.c-breadcrumb__list a {
  color: inherit;
  text-decoration: underline;
}

.c-breadcrumb__list [aria-hidden="true"] {
  color: var(--color-main);
  font-size: 0.75rem;
  font-weight: 700;
}

.p-lowerHero {
  background: #fff;
}

.p-lowerHero__inner {
  display: flex;
  flex-direction: column;
}

.p-lowerHero__top {
  min-height: 208px;
  padding: 36px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 60px;
}

.p-lowerHero__top.l-container {
  width: 1200px;
}

.p-lowerHero__heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-lowerHero__title {
  margin: 0;
  font-size: 3.625rem;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1;
  letter-spacing: 0.02em;
}

.p-lowerHero__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--color-main);
}

.p-lowerHero__subtitleLine {
  display: block;
  width: 60px;
  height: 2px;
  background: currentColor;
}

.p-lowerHero__subtitleText {
  font-family: var(--ff-lato);
  font-weight: 900;
  font-size: 0.9375rem;
  line-height: 1;
}

.p-lowerHero__summary {
  flex: 1 1 0;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-main);
}

.p-lowerHero__summary p {
  margin: 0;
}

.p-lowerHero__summary strong {
  display: block;
  font-size: 1.125rem;
}

.p-lowerHero__breadcrumb {
  width: 100%;
  background: var(--color-bg-blue);
}

/* Footer */
.c-footer__main {
  background: #122d3d;
  color: #fff;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  padding-top: 60px;
  margin-top: -25px;
}

.c-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.c-footer__logo {
  margin-bottom: 40px;
}

.c-footer__logoImg {
  height: 85px;
  width: 192px;
}

.c-footer__desc {
  font-weight: 700;
  margin-bottom: 24px;
}

.c-footer__companyName {
  font-weight: 700;
  margin-bottom: 10px;
}

.c-footer__row {
  font-weight: 500;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.c-footer__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.c-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  justify-self: end;
}

.c-footer__navHead {
  color: var(--color-main);
  font-weight: 700;
  margin-bottom: 20px;
}

.c-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.c-footer__links a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.c-footer__dot {
  display: block;
  width: 5px;
  height: 5px;
  background: var(--color-main);
  border-radius: 50%;
  flex-shrink: 0;
}

.c-footer__copy {
  border-top: 1px solid #ccc;
  text-align: center;
  padding: 30px 0;
  font-size: 0.75rem;
  margin-top: 60px;
}

.p-commonCta {
  padding: 65px 0 75px;
  background: #fff;
  text-align: center;
}

.p-commonCta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.p-commonCta__title {
  font-size: 2.0625rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-main);
}

.p-commonCta__text {
  font-size: 1.125rem;
}

.c-steps {
  padding: 80px 0;
}

.c-steps__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  overflow: hidden;
  list-style: none;
  padding: 0;
}

.c-steps__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 35px;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
}

.c-steps__item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.c-steps__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: calc(70px / 2);
  right: 50%;
  width: 50%;
  height: 2px;
  background: #e0e0e0;
  transform: translateY(-50%);
  z-index: -1;
}

.c-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(70px / 2);
  left: 50%;
  width: calc(50% + 30px);
  height: 2px;
  background: #e0e0e0;
  transform: translateY(-50%);
  z-index: -1;
}

.c-steps__no {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--color-main);
  color: #fff;
  font-family: var(--ff-lato);
  font-weight: 900;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
}

.c-steps__label {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Utilities */
@media (max-width: 1220px) {
  .c-header__link {
    font-size: 0.875rem;
    padding: 0 10px;
  }

  .c-header__nav .c-btn {
    font-size: 0.75rem;
  }

  .c-header__navActions {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 1024px) {
  main {
    padding-top: 70px;
  }

  .l-container {
    width: calc(100% - 40px);
  }

  .c-sectionHead__title {
    font-size: 2.625rem;
  }

  .c-header {
    height: 70px;
  }

  .c-header__hamburger {
    display: flex;
  }

  .c-header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    padding: 20px 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    flex-direction: column;
  }

  .c-header__nav.is-open {
    transform: translateX(0);
  }

  .c-header__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .c-header__item {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #eee;
  }

  .c-header__item:hover .c-header__sub-list {
    opacity: 1;
    visibility: visible;
  }

  .c-header__link {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .c-header__sub-list {
    position: static;
    opacity: 1;
    visibility: visible;
    max-height: none;
    overflow: visible;
    background: #fff;
    box-shadow: none;
    -webkit-filter: none;
    filter: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
    width: 100%;
  }

  .c-header__sub-list::before {
    display: none;
  }

  .c-header__item.is-open-sub .c-header__sub-list {
    max-height: 1000px;
  }

  .c-header__sub-link {
    padding: 12px 20px 12px 36px;
    font-weight: 700;
  }

  .c-header__navActions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    margin-top: 10px;
  }

  .c-header__navActions .c-btn {
    width: 100%;
    max-width: 400px;
    justify-content: center;
    font-size: 1rem;
  }

  .p-hero {
    padding: 80px 0 30px;
  }

  .p-hero__top {
    justify-content: center;
    gap: 20px;
  }

  .p-hero__lead {
    font-size: 4.7vw;
  }

  .p-hero__lead small {
    font-size: 3.9vw;
  }

  .p-hero__fixed {
    display: none;
  }

  .p-metrics {
    padding: 80px 0 100px;
  }

  .p-metrics__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .p-about {
    flex-direction: column;
    gap: 40px;
    padding: 60px 0;
  }

  .p-about__content {
    max-width: 100%;
  }

  .p-about__catch {
    font-size: 1.75rem;
  }

  .p-features {
    padding: 60px 0;
  }

  .p-features__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .p-featureBox {
    grid-template-columns: 1fr 1.5fr;
  }

  .p-reviews {
    padding: 60px 0;
  }

  .p-reviews__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .p-reviews__desc .br {
    display: none;
  }

  .p-flow {
    padding: 60px 0;
  }

  .p-faq {
    padding: 60px 20px;
  }

  .p-faq__wrapper {
    padding: 60px 20px;
  }

  .p-faq .l-container {
    gap: 40px;
  }

  .p-faq__content {
    flex: 1.5;
  }

  .p-faq__image {
    flex: 1;
  }

  .p-contact {
    padding: 80px 0;
  }

  .p-contact__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .p-contact__infos {
    justify-content: center;
  }

  .p-column {
    padding: 60px 0 100px;
  }

  .p-column__inner {
    flex-direction: column;
    gap: 40px;
  }

  .p-column__intro {
    display: contents;
  }

  .p-column__head {
    margin-bottom: 0;
  }

  .p-column .c-sectionHead {
    order: 1;
  }

  .p-column__desc {
    order: 2;
  }

  .p-column .c-btn {
    order: 4;
  }

  .p-column__list {
    width: 100%;
    grid-template-columns: 1fr;
    order: 3;
  }

  .p-ctaCard .l-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .c-ctaCard__icon {
    width: 120px;
  }

  .c-footer__main {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .c-footer__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 40px;
  }

  .c-footer__logo,
  .c-footer__desc,
  .c-footer__companyName {
    text-align: center;
  }

  .c-footer__nav {
    justify-self: center;
  }

  .c-footer__copy {
    margin-top: 40px;
  }

  .p-lowerHero__top {
    gap: 36px;
  }

  .p-lowerHero__title {
    font-size: 3.3rem;
  }

  .p-commonCta__title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .l-container {
    width: calc(100% - 30px);
  }

  .c-btn {
    padding: 8px 14px;
    min-width: 160px;
  }

  .p-hero {
    padding: 70px 0 20px;
  }

  .p-hero__bg {
    height: 80%;
  }

  .p-hero__top {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .p-hero__lead {
    font-size: 2.5rem;
  }

  .p-hero__lead small {
    font-size: 2rem;
  }

  .p-hero__actions {
    flex-direction: column;
    gap: 5px;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }

  .p-hero__actions .c-btn {
    width: 100%;
  }

  .p-metrics {
    padding: 60px 0 80px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .p-metrics__grid {
    gap: 20px;
  }

  .p-metrics__card {
    padding: 30px 10px;
  }

  .p-metrics__icon {
    height: 80px;
  }

  .p-metrics__value {
    font-size: 2.85rem;
  }

  .p-metrics__value small {
    font-size: 2rem;
  }

  .p-about {
    padding: 50px 0;
  }

  .p-features {
    padding: 50px 0;
  }

  .p-featureBox,
  .p-featureBox--reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .p-reviews {
    padding: 50px 0;
  }

  .p-reviews__head {
    gap: 20px;
  }

  .p-reviews__grid {
    grid-template-columns: 1fr;
  }

  .p-flow {
    padding: 50px 0;
  }

  .p-flow__list::before {
    left: 24px;
  }

  .p-flow__item {
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }

  .p-flow__box {
    padding: 20px;
  }

  .p-faq {
    padding: 50px 10px;
  }

  .p-faq__wrapper {
    padding: 40px 15px;
    border-radius: 30px;
  }

  .p-faq__image {
    display: none;
  }

  .p-faq__list {
    max-width: 100%;
  }

  .p-faq__q {
    padding: 12px;
  }

  .p-contact {
    padding: 60px 0;
  }

  .p-contact__container {
    gap: 30px;
  }

  .p-contact__boxTitle {
    font-size: 1.75rem;
  }

  .p-column {
    padding: 50px 0 80px;
  }

  .p-column__head {
    gap: 20px;
  }

  .p-card__thumb {
    width: 140px;
  }

  .p-lowerHero__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 20px 0;
  }

  .p-lowerHero__title {
    font-size: 3rem;
  }

  .p-lowerHero__subtitleLine {
    width: 48px;
  }

  .p-lowerHero__summary {
    width: 100%;
  }

  .c-footer__main {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .c-footer__grid {
    gap: 30px;
  }

  .c-footer__nav {
    gap: 30px;
  }

  .c-footer__copy {
    margin-top: 30px;
    padding: 20px 0 0;
  }

  .c-steps__track {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  main {
    padding-top: 60px;
  }

  .l-container {
    width: calc(100% - 20px);
  }

  .c-sectionHead {
    margin-bottom: 30px;
  }

  .c-sectionHead__title {
    font-size: 2rem;
  }

  .c-sectionHead__sub {
    font-size: 1rem;
  }

  .c-header {
    height: 60px;
    gap: 12px;
  }

  .c-header__logoImg {
    height: 40px;
  }

  .c-header__hamburger {
    width: 26px;
    height: 26px;
  }

  .c-header__hamburger[aria-expanded="true"] .c-header__hamburgerLine:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .c-header__hamburger[aria-expanded="true"] .c-header__hamburgerLine:nth-child(2) {
    opacity: 0;
  }

  .c-header__hamburger[aria-expanded="true"] .c-header__hamburgerLine:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .c-header__nav {
    top: 60px;
  }

  .c-header__navActions {
    padding: 15px;
    gap: 10px;
  }

  .c-btn {
    padding: 6px 12px;
  }

  .p-hero {
    padding: 60px 0 15px;
  }

  .p-metrics {
    padding: 40px 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .p-metrics__grid {
    grid-template-columns: 1fr;
  }

  .p-metrics__card {
    padding: 20px 10px;
  }

  .p-metrics__icon {
    height: 60px;
  }

  .p-about {
    padding: 40px 0;
  }

  .p-features {
    padding: 40px 0;
  }

  .p-reviews {
    padding: 40px 0;
  }

  .p-flow {
    padding: 40px 0;
  }

  .p-flow__box {
    padding: 15px;
  }

  .p-faq {
    padding: 40px 0;
  }

  .p-faq__wrapper {
    padding: 30px 10px;
    border-radius: 20px;
  }

  .p-banner {
    padding: 40px 0;
  }

  .p-contact {
    padding: 40px 0;
  }

  .p-contact__infos {
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
  }

  .p-contact__info:first-child {
    padding-right: 0;
    border-right: none;
  }

  .p-contact__box {
    padding: 30px 20px;
  }

  .p-contact__actions {
    gap: 10px;
  }

  .p-column {
    padding: 40px 0;
  }

  .p-card {
    height: auto;
  }

  .p-ctaCard .l-container {
    padding: 40px 0 65px;
  }

  .p-lowerHero__top {
    height: auto;
    gap: 20px;
  }

  .p-lowerHero__heading {
    gap: 10px;
  }

  .p-lowerHero__title {
    font-size: 2.5rem;
  }

  .p-lowerHero__subtitle {
    gap: 6px;
  }

  .p-lowerHero__subtitleLine {
    width: 32px;
  }

  .p-lowerHero__subtitleText {
    font-size: 0.75rem;
  }

  .p-lowerHero__summary {
    font-size: 0.9rem;
  }

  .p-lowerHero__breadcrumb.c-breadcrumb {
    padding: 8px 0;
  }

  .c-footer__main {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .c-ctaCard {
    padding: 20px;
  }

  .c-ctaCard__icon {
    display: none;
  }

  .c-ctaCard__title {
    margin-left: 0;
    font-size: 20px;
  }

  .c-ctaCard__text {
    margin-left: 0;
    font-size: 14px;
  }

  .p-commonCta__title {
    font-size: 1.5rem;
  }

  .c-steps {
    padding: 40px 0;
  }
}