@charset "UTF-8";
:root {
  --font-size-h1: 4rem;
  --font-size-h1-smaller: 3rem;
  --font-size-h2: 1.3rem;
  --font-size-h2-larger: 2.2rem;
  --font-size-h2-smaller: 1.2rem;
  --font-size-body: 0.9rem;
  --font-size-body-larger: 1.6rem;
  --font-size-body-smaller: 0.7rem;
  --font-size-smaller: 0.8rem;
}

@media (max-width: 1000px) {
  :root {
    --font-size-h1: 2.2rem;
    --font-size-h1-smaller: 1.7rem;
    --font-size-h2: 1.1rem;
    --font-size-h2-larger: 1.6rem;
    --font-size-h2-smaller: 1.05rem;
    --font-size-body: 0.875rem;
    --font-size-body-larger: 1.3rem;
    --font-size-body-smaller: 0.68rem;
    --font-size-smaller: 0.75rem;
  }
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP";
}

@property --progress {
  syntax: "<number>";
  initial-value: 0;
  inherits: false;
}
@keyframes sweep-red {
  0% {
    --progress: 0;
  }
  100% {
    --progress: 100;
  }
}
section {
  display: flex;
  justify-content: center;
}
section .wrapper {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}
section .wrapper .content {
  display: flex;
  width: 100%;
}
section .wrapper .content h1 {
  font-size: var(--font-size-h1);
}
section .wrapper .content h2 {
  font-size: var(--font-size-h2);
}
section .wrapper .content p {
  font-size: var(--font-size-body);
}
section.hero {
  background: rgba(0, 0, 0, 0.4);
  color: #FFFFFF;
  height: 100dvh;
  align-items: center;
  font-family: "Monsterrat";
  letter-spacing: 2px;
  padding: 80px 60px 30px 60px;
}
section.hero .content {
  flex-direction: column;
}
section.hero .content h2 {
  font-size: var(--font-size-h2-larger);
  margin-bottom: 40px;
}
section.hero .content p {
  font-size: var(--font-size-h2-smaller);
  letter-spacing: 1px;
  font-family: unset;
  line-height: 2.4;
  margin-bottom: 30px;
}
section.hero .content .next-sec {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}
section.hero .content .next-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #FD0200 calc(var(--progress, 0) * 1%), #F5F5F5 calc(var(--progress, 0) * 1%));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  animation: sweep-red 3s linear infinite;
}
section.hero .content .next-sec img {
  filter: brightness(0) invert(1);
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
  position: relative;
  z-index: 1;
}
section.hero-sub {
  background: rgba(0, 0, 0, 0.4);
  color: #FFFFFF;
  height: 100dvh;
  align-items: center;
  font-family: "Monsterrat";
  letter-spacing: 2px;
  padding: 60px;
}
section.hero-sub .content {
  flex-direction: column;
  align-items: center;
}
section.hero-sub .content h1 {
  margin-bottom: 40px;
}
section.hero-sub .content p {
  font-size: var(--font-size-h2-smaller);
  text-align: center;
  margin-bottom: 40px;
  line-height: 2.4;
}
section.about-us {
  padding: 80px 60px 60px 60px;
  background-color: #FFFFFF;
  color: #000000;
}
section.about-us .spec-c {
  display: flex;
  flex-direction: column;
}
section.about-us .spec-c .hl.bl {
  background-color: #000000;
  color: #FFFFFF;
  font-size: var(--font-size-body-larger);
  width: fit-content;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px;
}
section.about-us .content {
  gap: 60px;
}
section.about-us .content .left {
  display: flex;
  flex-direction: column;
  flex: 1;
}
section.about-us .content .left .img-wrapper {
  display: none;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
section.about-us .content .left .img-wrapper img {
  width: 100%;
  max-width: unset;
}
section.about-us .content .left h1 {
  margin-bottom: 10px;
  color: #FD0200;
}
section.about-us .content .left h2 {
  margin-bottom: 60px;
}
section.about-us .content .left .spec-c {
  margin-bottom: 24px;
}
section.about-us .content .left p {
  letter-spacing: 1px;
  line-height: 2.4;
  margin-bottom: 60px;
}
section.about-us .content .left .btn.read-more {
  font-size: var(--font-size-smaller);
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  letter-spacing: 1px;
  gap: 20px;
}
section.about-us .content .left .btn.read-more .circle.red {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #FD0200;
  border-radius: 50%;
}
section.about-us .content .left .btn.read-more .circle.red img {
  filter: brightness(0) invert(1);
  width: 14px;
  height: 14px;
}
section.about-us .content .right {
  flex: 1;
}
section.about-us .content .right .img-wrapper {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
section.about-us .content .right .img-wrapper img {
  width: 100%;
  max-width: unset;
}
section.business {
  background-color: #FFFFFF;
  padding: 80px 60px;
  overflow: hidden;
}
section.business .content {
  flex-direction: column;
}
section.business .content .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  align-items: flex-end;
}
section.business .content .top .text {
  display: flex;
  flex-direction: column;
}
section.business .content .top .text h1 {
  color: #FD0200;
  margin-bottom: 10px;
}
section.business .content .top .caro-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  touch-action: manipulation;
}
section.business .content .top .caro-btns .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000000;
  border-radius: 50%;
  padding: 20px;
  background-color: #FFFFFF;
  cursor: pointer;
  touch-action: manipulation;
}
section.business .content .top .caro-btns .btn img {
  filter: brightness(0);
  width: 14px;
  height: 14px;
}
section.business .content .top .caro-btns .btn:disabled {
  border-color: gray;
}
section.business .content .top .caro-btns .btn:disabled img {
  filter: grayscale(1);
}
section.business .content .top .caro-btns .btn.prev img {
  transform: rotate(180deg);
}
section.business .content .b-viewport {
  display: flex;
  margin-bottom: 40px;
}
section.business .content .b-viewport .b-track {
  display: flex;
  gap: 40px;
  transition: transform 0.2s ease-in-out;
}
section.business .content .b-viewport .b-track .b-item .img-wrapper {
  border-radius: 10px;
  overflow: hidden;
  width: 350px;
  height: 220px;
  margin-bottom: 24px;
}
section.business .content .b-viewport .b-track .b-item .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
section.business .content .b-viewport .b-track .b-item span {
  display: flex;
  font-size: var(--font-size-body-larger);
  margin-bottom: 12px;
  font-weight: 600;
}
section.business .content .b-viewport .b-track .b-item p {
  letter-spacing: 1px;
  line-height: 2;
}
section.business .content .b-prog-bar {
  width: 100%;
  height: 4px;
  background-color: #C7C7C7;
  border-radius: 4px;
  overflow: hidden;
}
section.business .content .b-prog-bar .b-prog {
  height: 100%;
  width: 0%;
  background-color: #FD0200;
  border-radius: 4px;
  transition: width 0.2s ease-out;
}
section.members {
  background-color: #FFFFFF;
  padding: 80px 60px 100px 60px;
  overflow: hidden;
}
section.members .content {
  flex-direction: column;
}
section.members .content .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  align-items: flex-end;
}
section.members .content .top .text {
  display: flex;
  flex-direction: column;
}
section.members .content .top .text h1 {
  color: #FD0200;
  margin-bottom: 10px;
}
section.members .content .top .m-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
section.members .content .top .m-dots [data-dot] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid #C7C7C7;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
section.members .content .top .m-dots [data-dot]:hover {
  opacity: 0.8;
}
section.members .content .top .m-dots [data-dot].active {
  background-color: #FD0200;
  border-color: #FD0200;
  transform: scale(1.2);
}
section.members .content .bottom {
  display: flex;
  gap: 60px;
}
section.members .content .bottom .left {
  display: flex;
  flex-direction: column;
  min-width: 35%;
}
section.members .content .bottom .left p {
  letter-spacing: 1px;
  line-height: 2;
  margin-bottom: 80px;
}
section.members .content .bottom .left .caro-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  touch-action: manipulation;
}
section.members .content .bottom .left .caro-btns .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000000;
  border-radius: 50%;
  padding: 20px;
  background-color: #FFFFFF;
  cursor: pointer;
  touch-action: manipulation;
}
section.members .content .bottom .left .caro-btns .btn img {
  filter: brightness(0);
  width: 14px;
  height: 14px;
}
section.members .content .bottom .left .caro-btns .btn:disabled {
  border-color: gray;
}
section.members .content .bottom .left .caro-btns .btn:disabled img {
  filter: grayscale(1);
}
section.members .content .bottom .left .caro-btns .btn.prev img {
  transform: rotate(180deg);
}
section.members .content .bottom .m-viewport {
  display: flex;
  clip-path: inset(0 -100vw 0 0);
}
section.members .content .bottom .m-viewport .m-track {
  display: flex;
  gap: 40px;
  transition: transform 0.2s ease-in-out;
}
section.members .content .bottom .m-viewport .m-track .m-item {
  display: flex;
  flex-direction: column;
}
section.members .content .bottom .m-viewport .m-track .m-item .img-wrapper {
  border: 1px solid #FD0200;
  width: 300px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FD0200;
  border-radius: 10px;
  margin-bottom: 24px;
}
section.members .content .bottom .m-viewport .m-track .m-item span.name {
  display: flex;
  font-size: var(--font-size-body-larger);
  font-weight: 600;
  margin-bottom: 12px;
}
section.members .content .bottom .m-viewport .m-track .m-item span.title {
  color: #5F5F5F;
}
section.partners {
  background-color: #FFFFFF;
  background-image: url(/assets/images/kameiten.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 80px 60px;
  height: 100dvh;
  position: relative;
}
section.partners .filter {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
  z-index: 1;
}
section.partners .content {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  position: relative;
}
section.partners .content .partner-text {
  position: relative;
  top: 76px;
  max-width: 500px;
  z-index: -1;
}
section.partners .content span {
  font-size: var(--font-size-h2-larger);
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin-bottom: 40px;
}
section.partners .content .btn.goto {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  background-color: #FD0200;
  letter-spacing: 1px;
  text-decoration: none;
  gap: 14px;
  border-radius: 40px;
  padding: 14px 30px;
}
section.partners .content .btn.goto img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
section.cta {
  background-color: #FFFFFF;
}
section.cta .content .cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 30px;
  text-align: center;
  flex: 1;
}
section.cta .content .cta-card:first-child {
  border-right: 1px solid #C7C7C7;
}
section.cta .content .cta-card span {
  font-weight: 600;
  font-size: var(--font-size-body-larger);
  margin-bottom: 20px;
}
section.cta .content .cta-card p {
  line-height: 1.6;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
section.cta .content .cta-card .btn.goto {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #FD0200;
  border-radius: 40px;
  padding: 12px 0;
  width: 180px;
  font-weight: 600;
  text-decoration: none;
  color: #FD0200;
  position: relative;
}
section.cta .content .cta-card .btn.goto img {
  width: 14px;
  height: 14px;
  position: absolute;
  right: 10px;
}
section.topview-alt {
  padding: 160px 60px 100px 60px;
  border-bottom: 1px solid #C7C7C7;
  position: relative;
}
section.topview-alt .path {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 30px;
  right: 60px;
  font-size: var(--font-size-body);
  gap: 6px;
}
section.topview-alt .path .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #C7C7C7;
  border-radius: 50%;
  padding: 8px;
  background-color: #FFFFFF;
}
section.topview-alt .path .img-wrapper img {
  width: 16px;
  height: 16px;
}
section.topview-alt .path .arrow {
  width: 24px;
  height: 24px;
  filter: brightness(0);
}
section.topview-alt .path .cur-page {
  background-color: #525252;
  color: #FFFFFF;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 40px;
}
section.topview-alt .content {
  flex-direction: column;
  position: relative;
}
section.topview-alt .content h1 {
  margin-bottom: 20px;
  font-size: var(--font-size-h1-smaller);
}
section.topview-alt .content h2 {
  color: #FD0200;
  font-size: var(--font-size-h2-smaller);
  text-transform: uppercase;
  letter-spacing: 1px;
}
section.privacy-policy {
  padding: 80px 60px;
  border-bottom: 1px solid #C7C7C7;
}
section.privacy-policy .content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
section.privacy-policy .content .block {
  display: flex;
  flex-direction: column;
}
section.privacy-policy .content .block .title {
  font-size: var(--font-size-body-larger);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
section.privacy-policy .content .block p {
  letter-spacing: 1px;
  line-height: 2;
}
section.contact-form {
  padding: 80px 60px;
  border-bottom: 1px solid #C7C7C7;
}
section.contact-form .content {
  flex-direction: column;
}
section.contact-form .content form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section.contact-form .content form .fi {
  display: flex;
  flex-direction: column;
}
section.contact-form .content form .fi.required .label::after {
  content: "必須";
  background-color: #FD0200;
  color: #FFFFFF;
  font-size: 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 6px;
  border-radius: 4px;
  margin-left: 10px;
}
section.contact-form .content form .fi.check {
  flex-direction: row;
  align-items: center;
}
section.contact-form .content form .fi.check .label {
  margin-bottom: unset;
  font-weight: 400;
  display: block;
}
section.contact-form .content form .fi.check .label a {
  color: #FD0200;
}
section.contact-form .content form .fi.check input {
  margin-right: 10px;
}
section.contact-form .content form .fi .check-group {
  font-size: var(--font-size-body);
}
section.contact-form .content form .fi .check-group input {
  margin-right: 10px;
}
section.contact-form .content form .fi .label {
  display: flex;
  font-size: var(--font-size-body);
  font-weight: 600;
  margin-bottom: 10px;
}
section.contact-form .content form .fi input:not([type=checkbox]), section.contact-form .content form .fi textarea {
  width: 100%;
  border: 1px solid #B8B8B8;
  border-radius: 6px;
  padding: 10px;
}
section.contact-form .content form .fi textarea {
  min-height: 180px;
  resize: vertical;
}
section.contact-form .content form .btn-c {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}
section.contact-form .content form .btn-c button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #C7C7C7;
  border-radius: 4px;
  font-size: var(--font-size-body);
  background-color: #FFFFFF;
  font-weight: 500;
  padding: 20px 0;
  width: 300px;
  color: #000000;
}

header {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 24px 40px;
  height: 70px;
  transition: background-color 0.2s ease;
}
header.inverted {
  padding: 0;
  background-color: #FFFFFF;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}
header.inverted .left {
  padding-left: 30px;
}
header.inverted .left .logo-white {
  display: none;
  opacity: 0;
}
header.inverted .left .logo-black {
  display: flex;
  opacity: 1;
}
header.inverted .right .links a {
  color: #000000;
}
header.inverted .right .links a.contact-btn {
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 0;
  border-color: #000000;
  padding: 24px 30px;
}
header .left {
  display: flex;
  align-items: center;
}
header .left .logo-white {
  display: flex;
  max-width: 180px;
  opacity: 1;
  transition: opacity 0.2s ease;
}
header .left .logo-black {
  display: none;
  max-width: 180px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
header .right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
}
header .right .links {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: var(--font-size-body);
  font-weight: 500;
  gap: 30px;
}
header .right .links a {
  text-decoration: none;
  color: #FFFFFF;
  transition: color 0.2s ease;
}
header .right .links a.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFFFFF;
  border-radius: 40px;
  padding: 8px 20px;
  gap: 10px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
header .right .links a.contact-btn img {
  max-width: 16px;
}
header .right .h-menu {
  display: none;
}

.bg-pane {
  display: flex;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.bg-pane video {
  width: 100%;
  object-fit: cover;
}

footer {
  display: flex;
  justify-content: center;
  padding: 80px 60px;
  background-color: #F5F5F5;
}
footer .wrapper {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
}
footer .wrapper .content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
footer .wrapper .content .top .img-wrapper {
  margin-bottom: 20px;
}
footer .wrapper .content .top .img-wrapper img {
  max-width: 180px;
}
footer .wrapper .content .social-links {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid #C7C7C7;
  border-bottom: 1px solid #C7C7C7;
  width: fit-content;
  margin-bottom: 30px;
}
footer .wrapper .content .social-links .instagram {
  display: flex;
  align-items: center;
  font-size: var(--font-size-body);
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  gap: 10px;
  padding: 0 80px 0 0;
}
footer .wrapper .content .social-links .instagram img {
  width: 20px;
  height: 20px;
}
footer .wrapper .content .social-links .instagram img.def {
  display: flex;
}
footer .wrapper .content .social-links .instagram img.filled {
  display: none;
}
footer .wrapper .content .social-links .instagram:hover img.def {
  display: none;
}
footer .wrapper .content .social-links .instagram:hover img.filled {
  display: flex;
}
footer .wrapper .content .comp-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
footer .wrapper .content .comp-info span {
  display: flex;
}
footer .wrapper .content .comp-info span.area {
  margin-bottom: 10px;
  font-weight: 600;
}

@media screen and (max-width: 1000px) {
  header {
    padding: 0 30px;
    height: 60px;
  }
  header.inverted {
    padding: 0 30px;
  }
  header.inverted .left {
    padding-left: 0;
  }
  header.inverted .right .h-menu .stick {
    background-color: #000000;
  }
  header .left .logo-white, header .left .logo-black {
    max-width: 130px;
  }
  header .right .links {
    display: none;
  }
  header .right .h-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  header .right .h-menu.active .stick.top {
    transform: rotate(45deg);
    top: 4px;
  }
  header .right .h-menu.active .stick.mid {
    display: none;
    opacity: 0;
  }
  header .right .h-menu.active .stick.bot {
    transform: rotate(-45deg);
    top: -4px;
  }
  header .right .h-menu .stick {
    background-color: #FFFFFF;
    height: 2px;
    border-radius: 10px;
    width: 30px;
    position: relative;
    transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  }
  section.hero {
    padding: 60px 30px;
  }
  section.hero .content h1 {
    margin-bottom: 24px;
  }
  section.hero .content h2 {
    display: none;
  }
  section.hero .content p {
    font-size: 0.9rem;
  }
  section.hero .content p br {
    display: none;
  }
  section.hero .content .next-sec {
    width: 60px;
    height: 60px;
  }
  section.hero .content .next-sec img {
    width: 20px;
    height: 20px;
  }
  section.hero-sub {
    padding: 60px 30px;
  }
  section.hero-sub .content h1 {
    text-align: center;
  }
  section.hero-sub .content p {
    font-size: 0.9rem;
  }
  section.about-us {
    padding: 60px 30px;
  }
  section.about-us .content {
    flex-direction: column;
  }
  section.about-us .content .left .img-wrapper {
    display: flex;
    margin-bottom: 20px;
  }
  section.about-us .content .left .spec-c {
    white-space: nowrap;
  }
  section.about-us .content .left h2 {
    margin-bottom: 40px;
  }
  section.about-us .content .left p {
    margin-bottom: 30px;
  }
  section.about-us .content .left .btn.read-more .circle.red {
    padding: 16px;
  }
  section.about-us .content .right {
    display: none;
  }
  section.business {
    padding: 60px 30px;
  }
  section.business .content .top {
    margin-bottom: 36px;
  }
  section.business .content .top .caro-btns .btn {
    padding: 16px;
  }
  section.business .content .b-viewport {
    margin-bottom: 20px;
  }
  section.business .content .b-viewport .b-track .b-item .img-wrapper {
    width: 300px;
    height: 180px;
  }
  section.members {
    padding: 60px 30px;
  }
  section.members .content .top {
    margin-bottom: 20px;
  }
  section.members .content .top .m-dots {
    display: none;
  }
  section.members .content .bottom {
    flex-direction: column;
    gap: 20px;
  }
  section.members .content .bottom .left p {
    margin-bottom: 20px;
  }
  section.members .content .bottom .left .caro-btns .btn {
    padding: 16px;
  }
  section.members .content .bottom .m-viewport .m-track .m-item .img-wrapper {
    margin-bottom: 12px;
  }
  section.members .content .bottom .m-viewport .m-track .m-item span.name {
    margin-bottom: 6px;
  }
  section.partners {
    padding: 60px 30px;
  }
  section.partners .content .partner-text {
    max-width: 300px;
    top: 44px;
  }
  section.partners .content span {
    margin-bottom: 20px;
  }
  section.cta .content {
    flex-direction: column;
  }
  section.cta .content .cta-card {
    padding: 60px 30px;
  }
  section.cta .content .cta-card:first-child {
    border-right: none;
    border-bottom: 1px solid #C7C7C7;
  }
  section.topview-alt {
    padding: 120px 30px 100px 30px;
  }
  section.topview-alt .path {
    bottom: 20px;
    right: unset;
    left: 30px;
  }
  section.topview-alt .content h1 {
    margin-bottom: 10px;
  }
  section.privacy-policy {
    padding: 60px 30px;
  }
  section.privacy-policy .content {
    gap: 60px;
  }
  section.contact-form {
    padding: 60px 30px;
  }
  section.contact-form .content form {
    gap: 20px;
  }
  section.contact-form .content form .fi .label {
    margin-bottom: 8px;
  }
  section.contact-form .content form .btn-c {
    padding-top: 20px;
  }
  section.contact-form .content form .btn-c button {
    width: 100%;
    padding: 14px 0;
  }
  footer {
    padding: 60px 30px;
  }
  footer .wrapper .content .top .img-wrapper img {
    max-width: 130px;
  }
  footer .wrapper .content .social-links {
    width: 100%;
  }
}
#pop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 101;
  padding: 30px;
}
#pop .content {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 8px;
}
#pop .content span {
  font-size: 1.1rem;
  font-weight: 550;
  margin-bottom: 14px;
}
#pop .content p {
  font-size: 0.8rem;
  letter-spacing: 1px;
  line-height: 2;
  margin-bottom: 16px;
}
#pop .content a {
  text-decoration: none;
  color: #fff;
  width: fit-content;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 6px;
  background-color: #FD0200;
}

/*# sourceMappingURL=styles.css.map */
