#unit-nav-section-top {
  display: none;
}

.p-mobile-header__cta-area {
  border-top: none;
}

.sp {
  display: none;
}

.pc {
  display: inline-block;
}

.sub-nav-list {
  position: relative;
  transition: 0.3s;
}
.sub-nav-list #sub-nav {
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  min-width: 220px;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 100;
}
.sub-nav-list #sub-nav:before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #ffffff transparent;
}
.sub-nav-list #sub-nav a {
  display: block;
  padding: 14px 20px;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.sub-nav-list #sub-nav a:hover {
  background-color: #f4f7f7;
  color: #000000;
}
.sub-nav-list:hover #sub-nav {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sub-nav-list-mob .nav-view {
  display: block;
  padding: 16px 0;
  font-size: 1.6rem;
  font-weight: 700;
  width: 100%;
  text-align: left;
}
.sub-nav-list-mob .nav-view.view + #sub-nav-mob {
  max-height: 500px;
  margin-bottom: 16px;
  opacity: 1;
  visibility: visible;
}
.sub-nav-list-mob .nav-view.view + #sub-nav-mob:before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #ffffff transparent;
}
.sub-nav-list-mob #sub-nav-mob {
  max-height: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: max-height 0.5s ease-out;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.sub-nav-list-mob #sub-nav-mob a {
  padding: 16px;
}
.section-company {
  padding: 100px 0;
}
.section-company .section-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.section-company .section-content .company-table {
  margin: 2rem;
  max-width: 100%;
  width: 1200px;
  background-color: white;
  padding: 2rem;
  border-radius: 6px;
  position: relative;
  border-collapse: collapse;
}
.section-company .section-content .company-table tr th {
  min-width: 150px;
  text-align: left;
  font-weight: normal;
  background-color: #f4f7f7;
}
.section-company .section-content .company-table tr th, .section-company .section-content .company-table tr td {
  padding: 2rem;
  border: 1px solid #e8e8e8;
}
@media (max-width: 600px) {
  .section-company {
    padding: 60px 0;
  }
  .section-company .section-content .company-table:before {
    top: 0;
    opacity: 1;
  }
  .section-company .section-content .company-table tr {
    gap: 0rem;
    padding: 0 0;
    flex-direction: column;
    display: flex;
  }
  .section-company .section-content .company-table tr th, .section-company .section-content .company-table tr td {
    border: none;
    padding: 0.5rem;
  }
  .section-company .section-content .company-table tr th {
    text-align: left;
  }
  .section-company .section-content .company-table tr td {
    padding-left: 1rem;
  }
}

.widget-pop-thumb img.noimage,
.p-related-thumb img.noimage,
.c-blog-card__thumb img.noimage,
.c-doc-card__thumb img.noimage,
.post-thumb img.noimage {
  padding: 5%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cat-event {
  color: orangered;
  border: 1px solid orangered;
}

.cat-media {
  color: #f40000;
  border: 1px solid #f40000;
}

.p-contact-tel {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.p-page-title {
  word-break: auto-phrase;
}

/* Pagination */
.navigation ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 80px;
}
.navigation ul.page-numbers .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  transition: all 0.3s;
}
.navigation ul.page-numbers .page-numbers:hover {
  background-color: #f0f0f0;
  border-color: #ccc;
}
.navigation ul.page-numbers .page-numbers.current {
  background-color: #4CB5A2;
  color: #fff;
  border-color: #4CB5A2;
  pointer-events: none;
}
.navigation ul.page-numbers .page-numbers.dots {
  font-family: "Manrope", sans-serif;
  color: #666;
  margin: 0 4px;
}

.page-404 {
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

/* Buttons */
.hero-cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.c-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 18px 40px;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out-expo);
  min-width: 240px;
  cursor: pointer;
}

.c-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.c-btn-primary {
  background-color: #333;
  color: #fff;
}

.c-btn-primary:hover {
  background-color: #444;
  opacity: 1;
}

.c-btn-secondary {
  background-color: #333;
  border: 1px solid #333;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  color: white;
  border: 1px solid #333;
}

.c-btn-secondary:hover {
  background-color: #fff;
  color: #333;
  opacity: 1 !important;
}

.c-btn-tertiary .icon-circle-arrows {
  margin-right: 12px;
  font-size: 2rem;
  border: 1px solid #333;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  color: white;
  background-color: #333;
}
.c-btn-tertiary:hover {
  color: #333;
  background-color: white;
  opacity: 1;
  border: none;
  box-shadow: none;
}
.c-btn-tertiary:hover .icon-circle-arrows {
  border-color: #333;
}

.c-btn-primary {
  background-color: #333;
  color: #fff;
  transition: 0.3s;
  border: 1px solid #333;
}
.c-btn-primary .icon-circle-arrows {
  margin-right: 12px;
  font-size: 2rem;
  border: 1px solid white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.c-btn-primary:hover {
  color: #333;
  background-color: white;
  opacity: 1;
}
.c-btn-primary:hover .icon-circle-arrows {
  border-color: #333;
}
.c-btn-primary.white {
  background-color: white;
  color: #333;
  border: 1px solid white;
}
.c-btn-primary.white .icon-circle-arrows {
  border-color: #333;
}
.c-btn-primary.white:hover {
  color: white;
  background-color: #333;
}
.c-btn-primary.white:hover .icon-circle-arrows {
  border-color: white;
}

.c-btn-white {
  background-color: #fff;
  border: 1px solid #333;
  color: #333;
}

.c-btn-white:hover {
  background-color: #333;
  color: #fff;
}

@media (max-width: 768px) {
  .sp {
    display: inline-block;
  }
  .pc {
    display: none;
  }
  .c-btn-white {
    padding: 1rem;
  }
}