@charset "UTF-8";
/* ===== BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/*
 * ページ内アンカーの着地位置を固定ヘッダーの高さ分だけ下げ、見出しが隠れないようにする。
 * 別ページ（例: /company/）から #solutions 等へ遷移した際のブラウザ標準スクロールにも効く。
 * 値は coopel.js の HEADER_SCROLL_OFFSET と一致させること（同一ページ内リンクと着地位置を揃えるため）。
 */
#why,
#solutions,
#cases,
#insights {
  scroll-margin-top: 100px;
}

body {
  margin: 0;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  color: #0a0c14;
  -webkit-font-smoothing: antialiased;
  background-color: #fafafa;
}

img {
  display: block;
  max-width: 100%;
}

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

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

/* ===== LAYOUT ===== */
.section-inner {
  max-width: 1048px;
  margin: 0 auto;
  padding: 64px 24px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}

.section-label {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 14px;
  color: #002e91;
  white-space: nowrap;
}

.section-label--light {
  color: #002e91;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

.section-title {
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.3;
  color: #0a0c14;
  margin: 0;
}
@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }
}

.section-title--light {
  color: #fff;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

.cta-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

/* ===== COMPONENTS ===== */
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 40px;
  background-color: #001a55;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.btn-dark:hover {
  background-color: #334877;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1318px;
  height: 80px;
  background-color: #001a55;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 0 32px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
@media (max-width: 1024px) {
  .header {
    top: 16px;
    width: calc(100% - 32px);
  }
}
@media (max-width: 480px) {
  .header {
    height: 64px;
    border-radius: 16px;
  }
}
.header .header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 1120px) {
  .header .header-logo {
    max-width: 120px;
  }
}
@media (max-width: 890px) {
  .header .header-logo {
    position: relative;
    top: 1px;
    max-width: 100px;
  }
}
@media (max-width: 768px) {
  .header .header-logo {
    position: relative;
    top: 0;
    max-width: 120px;
  }
}
.header .header-nav {
  display: flex;
  align-items: center;
}
.header .nav-items {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header .nav-items {
    display: none;
  }
}
.header .nav-items .nav-item a {
  padding: 10px 16px;
  font-weight: 700;
  font-size: 16px;
  color: #e8eefc;
  white-space: nowrap;
  border-radius: 9999px;
  transition: background-color 0.2s;
}
.header .nav-items .nav-item a:hover {
  background-color: #263c6e;
}
@media (max-width: 1120px) {
  .header .nav-items .nav-item a {
    position: relative;
    top: -1px;
    padding: 5px 10px;
    font-size: 14px;
  }
}
@media (max-width: 890px) {
  .header .nav-items .nav-item a {
    padding: 4px 8px;
    font-size: 12px;
  }
}
.header .nav-items .nav-item span {
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.2s;
}
.header .nav-items .nav-item.nav-item--active a:hover {
  background-color: transparent;
}
.header .nav-items .nav-item.nav-item--active a span {
  border-bottom: 2px solid #fff;
}
.header .nav-items .nav-item:nth-child(6) {
  margin-right: 16px;
}
.header .nav-items .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 40px;
  background-color: #fff;
  color: #001a55;
  font-weight: 700;
  font-size: 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
@media (max-width: 1120px) {
  .header .nav-items .nav-cta {
    height: 32px;
    padding: 0 20px;
    font-size: 14px;
  }
}
@media (max-width: 890px) {
  .header .nav-items .nav-cta {
    height: 28px;
    padding: 0 15px;
    font-size: 12px;
  }
}
.header .nav-items .nav-cta:hover {
  opacity: 0.9;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #001a55;
  z-index: 999;
  padding: 100px 32px 32px;
  flex-direction: column;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-left: 30px;
}

.mobile-nav a {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 40px;
  background-color: #fff;
  border-radius: 999px;
  margin-top: 16px;
}
.mobile-nav-cta span {
  color: #001a55;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 988px;
  padding-top: 170px;
  margin-bottom: -283px;
  background-image: url(/wp-content/themes/coopel_2025/assets/images/front-page/bg-hero.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
  background-attachment: fixed;
}
@media (max-width: 1024px) {
  .hero {
    padding-top: 140px;
  }
}
@media (max-width: 815px) {
  .hero {
    margin-bottom: -200px;
  }
}
.hero .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1048px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.hero .hero-inner .hero-content {
  max-width: 1048px;
}
.hero .hero-inner .hero-headline {
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.2;
  background: linear-gradient(100deg, #0a0c14 0.3%, #3d497a 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero .hero-inner .hero-headline span {
  display: block;
}
.hero .hero-inner .hero-sub {
  max-width: 900px;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
  color: #0a0c14;
  margin: 0 0 32px;
}
.hero .hero-inner .hero-sub strong {
  font-weight: 700;
}
.hero .hero-inner .hero-cta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 65px;
}
@media (max-width: 900px) {
  .hero .hero-inner .hero-cta-wrapper {
    display: block;
    margin-bottom: 30px;
  }
}
.hero .hero-inner .hero-cta-wrapper .hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 48px;
  background: linear-gradient(105deg, #0039bb 0%, #002e91 100%);
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  border-radius: 999px;
  transition: opacity 0.2s;
}
@media (max-width: 768px) {
  .hero .hero-inner .hero-cta-wrapper .hero-cta {
    font-size: 18px;
    padding: 14px 32px;
  }
}
@media (max-width: 480px) {
  .hero .hero-inner .hero-cta-wrapper .hero-cta {
    font-size: 16px;
  }
}
.hero .hero-inner .hero-cta-wrapper .hero-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(105deg, #3360c5 0%, #3358a9 100%);
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.2s;
}
.hero .hero-inner .hero-cta-wrapper .hero-cta:hover {
  opacity: 0.99;
}
.hero .hero-inner .hero-cta-wrapper .hero-cta:hover::before {
  opacity: 1;
}
.hero .hero-inner .hero-cta-wrapper .hero-cta img {
  position: relative;
  top: 2px;
}
.hero .hero-inner .hero-cta-wrapper .hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 380px;
  gap: 16px;
}
@media (max-width: 900px) {
  .hero .hero-inner .hero-cta-wrapper .hero-stats {
    justify-content: flex-start;
    max-width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .hero .hero-inner .hero-cta-wrapper .hero-stats {
    gap: 8px;
  }
}
.hero .hero-inner .hero-cta-wrapper .hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 180px;
  padding: 16px;
  text-align: center;
  background-color: #fff;
}
.hero .hero-inner .hero-cta-wrapper .hero-stat-num {
  font-weight: 700;
  color: #002e91;
  margin: 0;
  line-height: 1;
}
.hero .hero-inner .hero-cta-wrapper .num-large {
  font-size: 40px;
}
@media (max-width: 860px) {
  .hero .hero-inner .hero-cta-wrapper .num-large {
    font-size: 32px;
  }
}
@media (max-width: 632px) {
  .hero .hero-inner .hero-cta-wrapper .num-large {
    font-size: 28px;
  }
}
.hero .hero-inner .hero-cta-wrapper .num-unit {
  font-size: 24px;
}
@media (max-width: 860px) {
  .hero .hero-inner .hero-cta-wrapper .num-unit {
    font-size: 20px;
  }
}
@media (max-width: 632px) {
  .hero .hero-inner .hero-cta-wrapper .num-unit {
    font-size: 16px;
  }
}
.hero .hero-inner .hero-cta-wrapper .num-plus {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 860px) {
  .hero .hero-inner .hero-cta-wrapper .num-plus {
    font-size: 20px;
  }
}
@media (max-width: 632px) {
  .hero .hero-inner .hero-cta-wrapper .num-plus {
    font-size: 16px;
  }
}
.hero .hero-inner .hero-cta-wrapper .hero-stat-num--dena {
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 860px) {
  .hero .hero-inner .hero-cta-wrapper .hero-stat-num--dena {
    font-size: 32px;
  }
}
@media (max-width: 632px) {
  .hero .hero-inner .hero-cta-wrapper .hero-stat-num--dena {
    font-size: 28px;
  }
}
.hero .hero-inner .hero-cta-wrapper .hero-stat-label {
  font-weight: 400;
  font-size: 16px;
  color: #0a0c14;
  margin: 0;
}
@media (max-width: 860px) {
  .hero .hero-inner .hero-cta-wrapper .hero-stat-label {
    font-size: 14px;
  }
}

/* ===== TRUSTED BY ===== */
.trusted-by {
  background-color: #fff;
  padding: 9px 0;
  display: flex;
  justify-content: center;
}
.trusted-by .trusted-by-inner {
  max-width: 1000px;
  width: 100%;
}
.trusted-by .logo-parade {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 2%, #000 98%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 2%, #000 98%, transparent 100%);
}
.trusted-by .logo-parade-track {
  display: flex;
  width: max-content;
  animation: trusted-by-scroll 160s linear infinite;
}
.trusted-by .logo-item {
  flex: 0 0 auto;
  height: 40px;
  margin-right: 48px;
}
.trusted-by .logo-item img {
  height: 100%;
  width: auto;
}
@media (prefers-reduced-motion: reduce) {
  .trusted-by .logo-parade-track {
    animation: none;
  }
}

@keyframes trusted-by-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ===== WHY COOPEL ===== */
.why-coopel {
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background-color: rgba(251, 251, 251, 0.01);
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.why-cards .why-card {
  display: flex;
  gap: 32px;
  background-color: #fff;
  border-radius: 40px;
  padding: 32px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 800px;
}
@media (max-width: 768px) {
  .why-cards .why-card {
    flex-direction: column;
    border-radius: 24px;
  }
}
.why-cards .why-card:nth-child(2) .why-card-image {
  max-height: 276px;
}
.why-cards .why-card.why-card--right {
  align-self: flex-end;
}
@media (max-width: 768px) {
  .why-cards .why-card.why-card--right {
    align-self: flex-start;
  }
}
.why-cards .why-card .why-card-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-cards .why-card .card-number {
  width: 48px;
  height: 48px;
  background-color: #001a55;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.why-cards .why-card .why-card-title {
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.2;
  color: #0a0c14;
  margin: 0;
}
.why-cards .why-card .why-card-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #5a6172;
  margin: 0;
}
.why-cards .why-card .why-card-image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  max-height: 238px;
}
@media (max-width: 768px) {
  .why-cards .why-card .why-card-image {
    min-height: 160px;
  }
}
.why-cards .why-card .why-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== OUR SOLUTIONS ===== */
.our-solutions {
  position: relative;
  background-color: #79acd9;
  background-image: url(/wp-content/themes/coopel_2025/assets/images/front-page/bg-our-solutions.webp);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}
.our-solutions .section-inner {
  position: relative;
  z-index: 1;
}
.our-solutions .solution-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .our-solutions .solution-cards {
    align-items: flex-start;
  }
}
.our-solutions .solution-row {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: 600px;
}
@media (max-width: 768px) {
  .our-solutions .solution-row {
    max-width: 100%;
    flex-direction: column;
  }
}
.our-solutions .solution-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.our-solutions .solution-card-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.our-solutions .solution-card-title {
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  color: #0a0c14;
  margin: 0;
  line-height: 1.2;
}
.our-solutions .solution-card-desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #5a6172;
  margin: 0;
}

/* ===== CASES ===== */
.cases {
  background-color: #fafafa;
}
.cases .cases-sub-title {
  font-weight: 700;
  font-size: 20px;
  color: #0a0c14;
  margin: 0 0 24px;
}
.cases .case-cards {
  display: flex;
  gap: 40px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .cases .case-cards {
    flex-direction: column;
    gap: 32px;
  }
}
.cases .case-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cases .case-card-image {
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.cases .case-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cases .case-card-title {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin: 0;
}
.cases .case-card-company {
  font-weight: normal;
  font-size: 14px;
  line-height: 1.6;
  color: #5a6172;
  margin: 0;
}

/* ===== PRODUCT SECTION ===== */
.product-section {
  background-color: #fafafa;
}
.product-section .section-inner {
  padding: 0 24px;
}
.product-section .product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
@media (max-width: 768px) {
  .product-section .product-tags {
    gap: 8px;
  }
}
.product-section .tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 24px 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .product-section .tag {
    font-size: 14px;
    padding: 6px 16px 6px 12px;
  }
}
.product-section .tag.tag--outline {
  padding-left: 38px;
  background-color: #fff;
  color: #002e91;
  border: 1px solid #002e91;
  cursor: pointer;
  transition: background-color 0.2s;
  background-image: url(/wp-content/themes/coopel_2025/assets/images/front-page/chevron-bottom.svg);
  background-position: 22px 54%;
  background-repeat: no-repeat;
}
.product-section .tag.tag--outline:hover {
  background-color: #f0f4ff;
}
.product-section .tag.tag--blue {
  background-color: #2e5bd7;
  color: #fff;
  cursor: default;
  /* アクティブなタグはシェブロンを表示しない */
}
.product-section .tag.tag--blue img {
  display: none;
}
.product-section .tag-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.product-section .product-row {
  display: none;
  flex-direction: column;
  gap: 16px;
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
}
.product-section .product-row.is-visible {
  display: flex;
}
.product-section .product-row.product-row--placeholder {
  min-height: 200px;
}
.product-section .coopel-logo-mark {
  max-width: 215px;
}
.product-section .coopel-logo-mark svg {
  width: 100%;
  height: auto;
}
.product-section .product-body {
  display: flex;
  align-items: flex-end;
  gap: 32px;
}
@media (max-width: 768px) {
  .product-section .product-body {
    flex-direction: column;
    align-items: flex-start;
  }
}
.product-section .product-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: #0a0c14;
  margin: 0;
  flex: 1;
}
@media (max-width: 768px) {
  .product-section .product-desc {
    font-size: 16px;
  }
}

/* ===== INSIGHTS ===== */
.insights {
  background-color: #fafafa;
}

.insight-cards {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .insight-cards {
    flex-direction: column;
  }
}

.insight-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insight-card-image {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 1px;
}
@media (max-width: 768px) {
  .insight-card-image {
    max-width: 400px;
    margin: 0 auto 1px;
  }
}
.insight-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-card-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: #0a0c14;
  margin: 0;
}

.insight-card-desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #5a6172;
  margin: 0;
  flex: 1;
}

.insight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.insight-tag {
  background-color: #f2f2f2;
  color: #5a6172;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ===== CONTACT ===== */
.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background-image: url(/wp-content/themes/coopel_2025/assets/images/front-page/bg-footer.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 24px;
}

.contact-title {
  margin: 0;
  color: #fff;
  font-weight: 500;
  font-size: clamp(32px, 3vw, 40px);
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 768px) {
  .contact-title {
    white-space: normal;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .contact-title {
    font-size: 20px;
  }
}

.contact-sub-title {
  margin: 0;
  color: #fff;
  font-weight: 500;
  font-size: clamp(14px, 2vw, 20px);
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 13px 51px;
  background-color: #fff;
  color: #001a55;
  font-weight: 700;
  font-size: 24px;
  border-radius: 999px;
  transition: opacity 0.2s;
}
@media (max-width: 480px) {
  .contact-cta {
    font-size: 18px;
    padding: 12px 32px;
  }
}
.contact-cta:hover {
  opacity: 0.9;
}
.contact-cta img {
  position: relative;
  top: 2px;
}

/* ===== FOOTER BAR ===== */
.footer-bar {
  background-color: #000;
  padding: 24px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-nav {
    gap: 16px;
  }
}
.footer-nav a {
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .footer-bottom {
    justify-content: flex-start;
  }
}

.copyright {
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  margin: 0;
}

/* ===== PAGE TOP ===== */
.page-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background-color: #001a55;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, background-color 0.3s, transform 0.3s;
  z-index: 900;
}
.page-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.page-top:hover {
  background-color: #334877;
}

/* ===== /{page} ===== */
.page-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 132px 24px 64px 24px;
}
.page-container .page-heading {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
}
@media (max-width: 1120px) {
  .page-container .page-heading {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .page-container .page-heading {
    font-size: 32px;
  }
}
.page-container {
  /* ===== /company ===== */
}
.page-container.page-container--company h2 {
  position: relative;
  display: inline-block;
  margin: 27px 0 0 0;
  padding-bottom: 8px;
  color: #001A55;
  font-weight: 700;
  font-size: 24px;
  border-bottom: 2px solid #002e91;
}
@media (max-width: 1120px) {
  .page-container.page-container--company h2 {
    font-size: 21px;
  }
}
@media (max-width: 768px) {
  .page-container.page-container--company h2 {
    font-size: 18px;
  }
}
.page-container.page-container--company h2::after {
  position: absolute;
  left: 0;
  bottom: -2px;
  z-index: -1;
  content: "";
  display: block;
  width: 720px;
  height: 2px;
  background: #e4e7ef;
}
@media (max-width: 767px) {
  .page-container.page-container--company h2::after {
    width: calc(100vw - 48px);
  }
}
.page-container.page-container--company h3 {
  font-size: 20px;
}
.page-container.page-container--company p {
  margin: 24px 0;
  line-height: 1.75;
}
.page-container.page-container--company figure {
  margin: 24px 0;
}
.page-container.page-container--company figure table tr {
  display: flex;
  align-items: flex-start;
}
.page-container.page-container--company figure table tr td {
  min-width: 132px;
  padding-bottom: 15px;
}
.page-container.page-container--company iframe {
  width: 100%;
  height: 450px;
}
.page-container {
  /* ===== /contact ===== */
}
.page-container.page-container--contact {
  max-width: 848px;
  margin: 0 auto;
  padding: 132px 24px 64px 24px;
  min-height: 100vh;
  position: relative;
}
.page-container.page-container--contact .page-heading {
  max-width: 720px;
  margin: 26px auto 10px 37px;
}
.page-container.page-container--contact.is-form-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 4px solid rgba(0, 26, 85, 0.15);
  border-top-color: #001a55;
  border-radius: 50%;
  animation: contact-form-spin 0.8s linear infinite;
}

@keyframes contact-form-spin {
  to {
    transform: rotate(360deg);
  }
}

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