@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@supports (-webkit-touch-callout: none) {
  html {
    height: -webkit-fill-available;
  }
  body {
    min-height: 100vh;
    height: -webkit-fill-available;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0 !important;
  padding: 0;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  background-color: #ffffff;
  color: #0e0e0e;
  padding-top: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

input,
button,
textarea,
select {
  /*  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;*/
}

a {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

.c-container {
  width: min(100vw - 2rem, 1280px);
  margin: 0 auto;
  position: relative;
}
.c-container-medium {
  width: min(100vw - 2rem, 1024px);
  margin: 0 auto;
  position: relative;
}
.c-container-small {
  width: min(100vw - 2rem, 768px);
  margin: 0 auto;
  position: relative;
}

.c-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  background-color: white;
  color: #0e0e0e !important;
  padding: 0 2rem;
  height: 48px;
  border-radius: 24px;
  transition: background-color 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
  font-weight: 600;
}
.c-btn:hover {
  background-color: rgba(255, 255, 255, 0.75);
}
.c-btn-back {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  border: 1px solid #0e0e0e;
  padding: 0 2rem;
  height: 36px;
  border-radius: 18px;
  margin-top: 2rem;
  color: #0e0e0e;
  transition: background-color 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.c-btn-back:visited {
  color: #0e0e0e;
}
.c-btn-back:hover {
  background-color: rgba(14, 14, 14, 0.05);
}
.c-btn-back:before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../images/arrow_back.svg");
  background-size: cover;
}

.c-flex {
  display: flex;
  gap: 2rem;
  align-items: center;
  width: 100%;
}
@media screen and (max-width:991px) {
  .c-flex {
    flex-direction: column;
  }
}

.p-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
}
.p-header nav {
  width: 100%;
  margin: 0 auto;
  padding: 1rem 2rem;
  transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.p-header-pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-header-pc h1 {
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
.p-header-pc h1 a,
.p-header-pc h1 a:visited {
  color: #ffffff;
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.p-header-pc h1 a:hover,
.p-header-pc h1 a:visited:hover {
  opacity: 0.5;
}
.p-header-pc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}
.p-header-pc ul a,
.p-header-pc ul a:visited {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  position: relative;
}
.p-header-pc ul a::after,
.p-header-pc ul a:visited::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  bottom: -5px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.p-header-pc ul a:hover:after,
.p-header-pc ul a:visited:hover:after {
  transform: scale(1, 1);
}
@media screen and (max-width:991px) {
  .p-header-pc ul {
    display: none;
  }
}
.p-header-sp {
  height: 0;
  overflow: hidden;
  transition: height 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
  display: none;
}
@media screen and (min-width:992px) {
  .p-header-sp {
    display: none;
  }
}
.p-header-sp ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
}
.p-header-sp ul li {
  border-bottom: 1px solid rgba(14, 14, 14, 0.1);
}
.p-header-sp a {
  font-size: 1rem;
  display: block;
  padding: 1rem 0;
}
.p-header:has(input[type=checkbox]:checked) .p-header-sp {
  height: 50vh;
}
.p-header.scrolled nav {
  background-color: white;
  width: min(100vw - 2rem, 1280px);
  border-radius: 30px;
  margin-top: 2rem;
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.2));
}
.p-header.scrolled nav a,
.p-header.scrolled nav a:visited {
  color: #0e0e0e;
}
.p-header.scrolled nav a::after,
.p-header.scrolled nav a:visited::after {
  background-color: #0e0e0e;
}
@media screen and (max-width:991px) {
  .p-header.scrolled .p-header-toggle {
    display: block;
  }
  .p-header.scrolled .p-header-sp {
    display: block;
  }
}
.p-header-toggle {
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 300;
  width: 36px;
  height: 36px;
  display: none;
  cursor: pointer;
}
@media screen and (min-width:992px) {
  .p-header-toggle {
    display: none;
  }
}
.p-header-toggle span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background-color: #0e0e0e;
}
.p-header-toggle span:nth-of-type(1) {
  top: 6px;
  animation: menu-open01 0.5s forwards cubic-bezier(0.075, 0.82, 0.165, 1);
}
.p-header-toggle span:nth-of-type(2) {
  top: 16px;
  transition: all 0.25s 0.25s;
  opacity: 1;
}
.p-header-toggle span:nth-of-type(3) {
  top: 26px;
  animation: menu-open02 0.5s forwards cubic-bezier(0.075, 0.82, 0.165, 1);
}
.p-header input[type=checkbox] {
  display: none !important;
}
.p-header input[type=checkbox]:checked + label span:nth-of-type(1) {
  animation: menu-close01 0.5s forwards cubic-bezier(0.075, 0.82, 0.165, 1);
}
.p-header input[type=checkbox]:checked + label span:nth-of-type(2) {
  opacity: 0;
}
.p-header input[type=checkbox]:checked + label span:nth-of-type(3) {
  animation: menu-close02 0.5s forwards cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media screen and (min-width:992px) {
  .p-header input[type=checkbox] {
    display: none;
  }
}
@media screen and (min-width:992px) {
  .p-header label {
    display: none;
  }
}

@keyframes menu-open01 {
  0% {
    transform: translateY(10px) rotate(45deg);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-open02 {
  0% {
    transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-close01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(45deg);
  }
}
@keyframes menu-close02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(-10px) rotate(-45deg);
  }
}
@keyframes slide-down {
  0% {
    transform: translateY(-200px);
  }
  100% {
    transform: translateY(0);
  }
}
.p-cover {
  width: 100vw;
  height: 100dvh;
  position: relative;
  overflow: hidden;
}
.p-cover-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.p-cover-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-cover-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
}
.p-cover-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-cover-drone {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  background-color: rgba(14, 14, 14, 0.2);
}
.p-cover-drone img {
  position: absolute;
  width: min(50%, 800px);
  right: -40px;
  bottom: 35%;
  animation: moveUpDown 10s ease-in-out infinite;
}
.p-cover-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30vh;
  z-index: 400;
  color: #ffffff;
}
.p-cover-text {
  text-align: center;
}
.p-cover-text p {
  margin: 0;
  font-size: clamp(1rem, 4vw, 1.75rem);
}
.p-cover-text h2 {
  font-size: clamp(3rem, 13vw, 7rem);
  margin: 0;
  padding: 0;
}
.p-cover-cta {
  text-align: center;
}
.p-cover-cta p {
  font-size: 1.125rem;
  animation: fade 1.25s infinite forwards;
}

@keyframes moveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-48px); /* 上下に動く距離 */
  }
}
@keyframes fade {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
.p-footer {
  padding: 5rem 0;
}
.p-footer .c-container {
  text-align: center;
}
.p-footer h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
.p-footer h3 + p {
  margin-bottom: 2rem;
}
.p-footer p {
  font-size: 0.875rem;
  margin: 0.5rem 0;
}
.p-footer ul {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.p-footer ul img {
  width: 24px;
  height: 24px;
}
.p-footer-logo {
  width: 60px;
  display: inline-flex;
  justify-content: center;
  margin: 0 auto;
}
.p-footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-contact {
  padding: 5rem 0;
  background-color: #0e0e0e;
  color: #ffffff;
}
.p-contact h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 500;
}
.p-contact h2 + p {
  margin-bottom: 3rem;
}
.p-contact-item {
  margin-bottom: 1.5rem;
}
.p-contact-item label {
  display: block;
  margin-bottom: 0.5rem;
}
.p-contact-item input[type=text],
.p-contact-item input[type=email],
.p-contact-item input[type=tel],
.p-contact-item select,
.p-contact-item textarea {
  width: 100%;
  padding: 1rem !important;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px !important;
  border: 1px solid gray;
  color: #ffffff !important;
  transition: background-color 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.p-contact-item input[type=text]:focus,
.p-contact-item input[type=email]:focus,
.p-contact-item input[type=tel]:focus,
.p-contact-item select:focus,
.p-contact-item textarea:focus {
  outline: none !important;
  background-color: rgba(255, 255, 255, 0.25);
}
.p-contact input[type=submit] {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  background-color: white;
  color: #0e0e0e !important;
  border: none;
  padding: 0 2rem;
  height: 48px;
  border-radius: 24px;
  transition: background-color 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
  margin: 2rem auto 0;
  cursor: pointer;
}
.p-contact input[type=submit]:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.p-product {
  padding: 5rem 0 1rem;
}
.p-product-item {
  flex: 1;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.p-product-item.active .p-product-img:after {
  width: 0%;
}
.p-product-item.active .p-product-desc {
  opacity: 1;
}
.p-product-item.active .p-product-title p:after,
.p-product-item.active .p-product-title h3:after {
  width: 0%;
}
.p-product-img {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: #0e0e0e;
  z-index: -1;
  transition: filter 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.p-product-img.img1:after {
  transition: width 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.p-product-img.img2:after {
  transition: width 0.25s 0.15s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.p-product-img:after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  display: block;
  background-color: #ffffff;
  content: "";
}
.p-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.p-product-text {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  z-index: 200;
  color: #ffffff;
  padding: 2rem;
}
.p-product a,
.p-product a:visited {
  color: #ffffff;
  cursor: pointer;
}
.p-product a:hover .p-product-img,
.p-product a:visited:hover .p-product-img {
  filter: brightness(120%);
}
.p-product-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.p-product-title p,
.p-product-title h3 {
  position: relative;
}
.p-product-title p:after,
.p-product-title h3:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ffffff;
}
.p-product-title p {
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.p-product-title p small {
  background-color: #0e0e0e;
  color: aquamarine;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  line-height: 1;
  animation: beta 1s infinite forwards;
}
.p-product-title h3 {
  font-size: 2.5rem;
  margin-top: 0;
}
.p-product-title.title1 p:after {
  transition: width 0.15s 0.25s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.p-product-title.title1 h3:after {
  transition: width 0.15s 0.35s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.p-product-title.title2 p:after {
  transition: width 0.15s 0.35s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.p-product-title.title2 h3:after {
  transition: width 0.15s 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.p-product-desc {
  opacity: 0;
}
.p-product-desc.desc1 {
  transition: opacity 0.25s 0.5s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.p-product-desc.desc2 {
  transition: opacity 0.25s 0.65s cubic-bezier(0.47, 0, 0.745, 0.715);
}

@keyframes beta {
  0% {
    color: aquamarine;
  }
  50% {
    color: rgba(127, 255, 212, 0.2);
  }
  100% {
    color: aquamarine;
  }
}
.p-faq {
  padding: 5rem 0;
}
.p-faq h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 500;
}
.p-faq details {
  background-color: rgba(128, 128, 128, 0.1);
  border: 1px solid rgba(128, 128, 128, 0.15);
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.p-faq details summary {
  padding-bottom: 0;
  padding-right: 2rem;
  cursor: pointer;
  display: block;
  position: relative;
}
.p-faq details summary::-webkit-details-marker {
  display: none;
}
.p-faq details summary:before, .p-faq details summary:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 2px;
  background-color: gray;
}
.p-faq details summary:before {
  transform: rotate(90deg);
  transition: transform 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.p-faq details[open] summary:before {
  transform: rotate(180deg);
}
.p-faq details[open] summary:after {
  display: none;
}
.p-faq details p {
  border-top: 1px solid rgba(128, 128, 128, 0.25);
  padding-top: 1rem;
  margin: 1rem 0 0;
}

.p-casestudy {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background-color: #0e0e0e;
}
.p-casestudy h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 500;
}
.p-casestudy-img {
  position: absolute;
  width: 100%;
  height: 250%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.75;
}
.p-casestudy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-casestudy .c-container {
  position: relative;
  z-index: 100;
}
.p-casestudy-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid white;
  padding: 2rem;
  border-radius: 8px;
  flex: 1;
  color: #0e0e0e;
  backdrop-filter: blur(16px);
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.2));
}
.p-casestudy-item h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 0;
}
.p-casestudy-item.item1 {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.p-casestudy-item.item1.active {
  opacity: 1;
}
.p-casestudy-item.item2 {
  opacity: 0;
  transition: opacity 0.5s 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.p-casestudy-item.item2.active {
  opacity: 1;
}

.p-feature {
  padding: 5rem 0;
}
.p-feature .c-flex {
  justify-content: space-between;
}
.p-feature h2 {
  font-size: 2rem;
  font-weight: 700;
}
.p-feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width:991px) {
  .p-feature-item {
    margin-bottom: 2rem;
  }
}
.p-feature-item span {
  display: block;
  background-color: #0e0e0e;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@media screen and (max-width:991px) {
  .p-feature-item span {
    font-size: 1rem;
    margin-top: 4px;
  }
}
.p-feature-item p {
  margin: 0;
  position: relative;
  font-size: 1.75rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@media screen and (max-width:991px) {
  .p-feature-item p {
    font-size: 1.25rem;
  }
}
.p-feature-item p:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background: linear-gradient(transparent 50%, rgba(0, 128, 0, 0.5) 50%);
  width: 0%;
  height: 80%;
  bottom: 0px;
  left: 0px;
  transition: width 0.5s 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@media screen and (max-width:991px) {
  .p-feature-item p:after {
    display: none;
  }
}
.p-feature-item.active span {
  opacity: 1;
}
.p-feature-item.active p {
  opacity: 1;
}
.p-feature-item.active p:after {
  width: 100%;
}
.p-feature-text {
  transition: opacity 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  opacity: 0;
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0;
  line-height: 2;
}
.p-feature-text.active {
  opacity: 1;
}

.p-news {
  padding: 3rem 0;
  background-color: rgba(14, 14, 14, 0.05);
  border-bottom: 1px solid rgba(14, 14, 14, 0.1);
}
.p-news-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #0e0e0e;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(14, 14, 14, 0.1);
}
@media screen and (max-width:991px) {
  .p-news-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
}
.p-news-item:visited {
  color: #0e0e0e;
}
.p-news-item:hover {
  color: #0e0e0e;
  background-color: rgba(14, 14, 14, 0.075);
}
.p-news-item p {
  margin: 0;
}
.p-news-item > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.p-news-date {
  font-size: 0.875rem;
  min-width: 7rem;
}
.p-news-category {
  background-color: #0e0e0e;
  color: #ffffff;
  width: 8rem;
  height: 32px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
.p-news-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.p-news-controls {
  margin-bottom: 2rem;
  display: flex;
  gap: 2px;
}
.p-news-controls .js-filter {
  border-radius: 4px 4px 0 0;
  background-color: rgba(14, 14, 14, 0.04);
}
@media screen and (max-width:575px) {
  .p-news-controls .js-filter {
    font-size: 2.8vw;
  }
}
.p-news-controls .js-filter.active {
  border-bottom: none;
  background-color: transparent;
}

.p-article {
  width: 100%;
  position: relative;
  background-image: url("../images/bg_article.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  margin: 0 !important;
  padding: 5rem 0;
}
.p-article-box {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 8px;
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.4));
}
.p-article-box h2 {
  font-size: 2.5rem;
}
.p-article-flex {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.p-article-flex p {
  margin-bottom: 0;
}
.p-article-category {
  background-color: #0e0e0e;
  color: #ffffff;
  width: 8rem;
  height: 32px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
.p-article .wp-post-image {
  margin-bottom: 1.5rem;
}

.p-page-cover {
  width: 100%;
  height: 40vh;
  background-color: #0e0e0e;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.p-page-cover-img {
  width: 100%;
  height: 120%;
  opacity: 0.75;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-page-cover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-page-cover h1 {
  font-size: 4rem;
  position: relative;
  z-index: 2;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.p-page-cover h1 small {
  font-size: 1.5rem;
  display: block;
  font-weight: 400;
}
.p-page-content {
  padding: 5rem 0 0 0;
}

.u-align-center {
  text-align: center !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}
.u-mb-4rem {
  margin-bottom: 4rem !important;
}

.u-my-3rem {
  margin: 3rem 0;
  background-color: red;
}