/* Reset */
:root {
  --font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --primary: #3498db;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: var(--font-family);
}

body {
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.5;
  word-break: keep-all;
  overflow-wrap: break-word;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Header */
.header {
  position: relative;
  z-index: 100;
  background-color: #fff;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  height: 90px;
  margin: 0 auto;
  padding: 0 60px;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-mark {
  flex-shrink: 0;
  width: 40px;
  height: 44px;
}

.header__logo-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.header__logo-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #666;
  letter-spacing: -0.02em;
  line-height: 1;
}

.header__logo-wordmark {
  display: block;
  width: auto;
  height: 30px;
}

.header__logo-kor {
  font-size: 26px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.08);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.header__nav {
  flex-shrink: 0;
}

.gnb {
  display: flex;
  align-items: center;
}

.gnb__item {
  position: relative;
}

.gnb__link {
  display: inline-block;
  position: relative;
  height: 90px;
  line-height: 90px;
  padding: 0 30px;
  font-size: 20px;
  font-weight: 600;
  color: #0f0f0f;
  white-space: nowrap;
  letter-spacing: -0.02em;
  transition: color 0.2s, font-weight 0.2s;
}

.gnb__link::after {
  content: "";
  display: block;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  height: 2px;
  background-color: transparent;
  transition: background-color 0.2s;
}

.gnb__item:hover .gnb__link,
.gnb__item.is-active .gnb__link {
  color: #2b8cff;
  font-weight: 700;
}

.gnb__item:hover .gnb__link::after,
.gnb__item.is-active .gnb__link::after {
  background-color: #2b8cff;
}

.gnb__sub {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 180px;
  padding: 12px 0;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  pointer-events: none;
}

.gnb__item:hover .gnb__sub {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.gnb__sub a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  letter-spacing: -0.02em;
  transition: background-color 0.2s, color 0.2s;
}

.gnb__sub a:hover {
  background-color: #f5f7fa;
  color: #111;
}

.gnb__item--contact {
  margin-left: 10px;
}

.gnb__contact {
  display: inline-flex;
  align-items: center;
  height: 90px;
  line-height: 90px;
  padding: 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: #2b8cff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.header__actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 30px;
  background-color: #2b8cff;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: -0.02em;
  transition: background-color 0.2s;
}

.header__cta:hover {
  background-color: #1a7ae8;
}

.header__contact {
  display: none;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 0;
  color: #2b8cff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #0f0f0f;
  font-size: 22px;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__backdrop {
  position: relative;
  flex: 1;
  background-color: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav.is-open .mobile-nav__backdrop {
  opacity: 1;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 28px;
}

.mobile-nav__panel {
  width: min(82%, 360px);
  height: 100%;
  overflow-y: auto;
  background-color: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__list {
  padding-top: 8px;
}

.mobile-nav__item {
  border-bottom: 1px solid #eee;
}

.mobile-nav__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 500;
  color: #0f0f0f;
  text-align: left;
  letter-spacing: -0.02em;
}

.mobile-nav__trigger i {
  font-size: 14px;
  color: #bbb;
  transition: transform 0.25s ease;
}

.mobile-nav__item.is-open .mobile-nav__trigger i {
  transform: rotate(180deg);
}

.mobile-nav__sub {
  display: none;
  padding: 4px 0 16px;
  background-color: #fafafa;
}

.mobile-nav__item.is-open .mobile-nav__sub {
  display: block;
}

.mobile-nav__sub a {
  display: block;
  padding: 12px 24px 12px 32px;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  letter-spacing: -0.02em;
}

.mobile-nav__sub a:hover {
  color: #2b8cff;
}

body.is-menu-open {
  overflow: hidden;
}

body.is-menu-open .quickbar {
  display: none;
}

@media (max-width: 1024px) {
  .header__inner {
    height: 64px;
    padding: 0 14px;
  }

  .header__nav {
    display: none;
  }

  .gnb__item--contact {
    display: none;
  }

  .header__actions {
    display: flex;
  }

  .header__logo-wordmark {
    height: 22px;
  }

  .header__logo-kor {
    display: none;
  }

  .header__contact {
    display: inline-flex;
  }

  .mobile-nav__trigger {
    padding: 18px 18px;
  }

  .mobile-nav__sub a {
    padding: 11px 18px 11px 26px;
  }
}

@media (max-width: 768px) {
  .header__inner {
    position: relative;
    padding: 0 10px;
  }

  .header__logo-wordmark {
    height: 20px;
  }

  .header__logo-kor {
    font-size: 22px;
    color: rgba(15, 23, 42, 0.06);
  }

  .header__cta {
    display: none;
  }

  .header__contact {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
  }

  .header__menu-btn {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav__backdrop,
  .mobile-nav__panel,
  .mobile-nav__trigger i {
    transition: none;
  }
}

/* Hero */
.hero {
  position: relative;
  height: 740px;
  overflow: hidden;
  background-color: #111;
}

.hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.4s ease-in-out;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero__slide.is-leaving {
  opacity: 0;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: #151515;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero__bg picture,
.hero__bg img {
  width: 100%;
  height: 100%;
}

.hero__bg img {
  object-fit: cover;
  transform: scale(1);
  will-change: transform;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.hero__bg--ready img,
.hero__bg.hero__bg--ready img {
  opacity: 1;
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero__inner {
  flex: 1;
  min-width: 0;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
  color: #fff;
}

.hero__label {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.hero__title {
  margin-bottom: 50px;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.hero__desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 52px;
  margin-top: 40px;
  padding: 0 32px;
  border-radius: 30px;
  background-color: #2b8cff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: background-color 0.2s;
}

.hero__btn:hover {
  background-color: #1a7ae8;
}

.hero__slide--pest .hero__bg::after {
  background: rgba(0, 0, 0, 0.52);
}

.hero__title--pest {
  margin-bottom: 36px;
  font-size: 60px;
  line-height: 1.2;
}

.hero__pest-body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 1fr);
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin-bottom: 28px;
}

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

.hero__pest-tags li {
  padding: 6px 13px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.02em;
}

.hero__pest-side {
  padding-left: 40px;
  border-left: 2px solid rgba(43, 140, 255, 0.35);
}

.hero__process-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.hero__process-title {
  font-size: 18px;
  font-weight: 700;
  color: #5ab0ff;
  letter-spacing: -0.02em;
}

.hero__process-cert {
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(43, 140, 255, 0.2);
  font-size: 12px;
  font-weight: 600;
  color: #a8d4ff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hero__process-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.hero__process-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero__process-steps li span {
  flex-shrink: 0;
  width: 28px;
  font-size: 13px;
  font-weight: 700;
  color: #2b8cff;
  letter-spacing: 0.02em;
}

.hero__process-note {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.02em;
}

.hero__pest-foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  max-width: 1100px;
}

.hero__pest-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.hero__pest-badges li {
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(43, 140, 255, 0.4);
  background: rgba(43, 140, 255, 0.1);
  font-size: 13px;
  font-weight: 600;
  color: #c5e4ff;
  letter-spacing: -0.02em;
}

.hero__btn--pest {
  margin-top: 0;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .hero__title--pest {
    font-size: 48px;
  }

  .hero__pest-body {
    gap: 32px;
    max-width: 900px;
  }

  .hero__pest-foot {
    max-width: 900px;
  }
}

@media (max-width: 900px) {
  .hero__pest-body {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: none;
  }

  .hero__pest-side {
    padding-top: 24px;
    padding-left: 0;
    border-top: 2px solid rgba(43, 140, 255, 0.35);
    border-left: none;
  }

  .hero__process-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero__pest-foot {
    max-width: none;
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero__slide.is-active .hero__bg img {
  animation: heroZoom 5s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

/* Frog Mascot */
.hero__frog {
  position: absolute;
  right: max(24px, 4vw);
  bottom: 0;
  z-index: 3;
  width: min(320px, 26vw);
  pointer-events: none;
  line-height: 0;
  animation: frogBob 3.5s ease-in-out infinite alternate;
}

.hero__frog img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.4));
}

@keyframes frogBob {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}

.pest,
.system,
.solution {
  position: relative;
  overflow: visible;
}

.pest__frog,
.system__frog,
.solution__frog {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  line-height: 0;
}

.pest__frog {
  right: 2%;
  bottom: 48px;
  width: min(210px, 22vw);
}

.system__frog {
  right: 48px;
  bottom: 24px;
  width: min(230px, 24vw);
}

.solution__frog {
  left: 3%;
  top: 96px;
  width: min(200px, 20vw);
}

.pest__frog img,
.system__frog img,
.solution__frog img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.12));
}

@media (max-width: 768px) {
  .hero {
    height: 640px;
  }

  .hero__slide--pest .hero__content {
    align-items: flex-start;
    padding: 24px 0 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .hero:has(.hero__slide--pest.is-active) .hero__frog {
    opacity: 0;
    visibility: hidden;
  }

  .hero__frog {
    width: min(120px, 30vw);
    right: 8px;
  }

  .pest__frog {
    right: 8px;
    bottom: 24px;
    width: min(100px, 26vw);
    opacity: 0.9;
  }

  .system__frog {
    right: 12px;
    bottom: 16px;
    width: min(110px, 28vw);
    opacity: 0.9;
  }

  .solution__frog {
    left: 8px;
    top: auto;
    bottom: 24px;
    width: min(96px, 24vw);
    opacity: 0.9;
  }

  .hero__inner {
    padding: 0 24px;
  }

  .hero__label {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .hero__title {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 1.25;
  }

  .hero__desc {
    font-size: 14px;
    line-height: 1.55;
  }

  .hero__btn {
    min-width: 140px;
    height: 44px;
    margin-top: 24px;
    padding: 0 24px;
    font-size: 14px;
  }

  .hero__title--pest {
    margin-bottom: 16px;
    font-size: 28px;
    line-height: 1.2;
  }

  .hero__pest-body {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .hero__pest-tags {
    gap: 5px;
  }

  .hero__pest-tags li {
    padding: 4px 9px;
    font-size: 11px;
    border-radius: 4px;
  }

  .hero__pest-side {
    padding-top: 16px;
    padding-left: 0;
    border-top: 1px solid rgba(43, 140, 255, 0.35);
    border-left: none;
  }

  .hero__process-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
  }

  .hero__process-title {
    font-size: 15px;
  }

  .hero__process-cert {
    white-space: normal;
    padding: 4px 10px;
    font-size: 11px;
    line-height: 1.3;
  }

  .hero__process-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
  }

  .hero__process-steps li {
    gap: 8px;
    padding: 8px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
  }

  .hero__process-steps li span {
    width: 22px;
    font-size: 11px;
  }

  .hero__process-note {
    font-size: 12px;
    line-height: 1.4;
  }

  .hero__pest-foot {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: none;
  }

  .hero__pest-badges {
    gap: 6px;
  }

  .hero__pest-badges li {
    padding: 5px 10px;
    font-size: 11px;
  }

  .hero__btn--pest {
    width: 100%;
    margin-top: 0;
  }

  .scroll-reveal {
    transform: none;
  }

  .scroll-reveal.is-revealed {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: none;
  }

  .hero__slide.is-active .hero__bg img {
    animation: none;
  }

  .hero__frog {
    animation: none;
  }

  .pest__thumb img {
    transition: none;
  }
}

/* Scroll Reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal--delay-1 {
  transition-delay: 0.15s;
}

.scroll-reveal--delay-2 {
  transition-delay: 0.3s;
}

.scroll-reveal--delay-3 {
  transition-delay: 0.45s;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .pest__card,
  .system__card,
  .solution__card,
  .process__card,
  .portfolio__card {
    transition: none;
  }

  .pest__card:hover,
  .system__card:hover,
  .solution__card:hover,
  .process__card:hover,
  .portfolio__card:hover {
    transform: none;
  }

  .pest__thumb img,
  .system__card-thumb img,
  .solution__card-thumb img,
  .process__card-thumb img,
  .portfolio__thumb img {
    transition: none;
  }

  .pest__card:hover .pest__thumb img,
  .system__card:hover .system__card-thumb img,
  .solution__card:hover .solution__card-thumb img,
  .process__card:hover .process__card-thumb img,
  .portfolio__card:hover .portfolio__thumb img {
    transform: none;
  }
}

/* Pest */
.pest {
  padding: 100px 0 120px;
  background-color: #fff;
}

.pest__inner {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

.pest__head {
  margin-bottom: 56px;
  text-align: center;
}

.pest__label {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 500;
  color: #2b8cff;
  letter-spacing: -0.02em;
}

.pest__title {
  margin-bottom: 20px;
  font-size: 53px;
  font-weight: 700;
  line-height: 1.35;
  color: #0f0f0f;
  letter-spacing: -0.03em;
}

.pest__desc {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  color: #555;
  letter-spacing: -0.02em;
}

.br-mobile {
  display: inline;
}

.br-desktop {
  display: none;
}

@media (min-width: 769px) {
  .br-mobile {
    display: none;
  }

  .br-desktop {
    display: inline;
  }
}

.pest__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pest__card {
  display: block;
  transition: transform 0.3s ease;
}

.pest__card:hover {
  transform: translateY(-6px);
}

.pest__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
}

.pest__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.75) 100%);
}

.pest__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pest__card:hover .pest__thumb img {
  transform: scale(1.06);
}

.pest__card-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 28px;
  color: #fff;
}

.pest__card-title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pest__card-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .pest__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .pest {
    padding: 64px 0 80px;
  }

  .pest__inner {
    padding: 0 24px;
  }

  .pest__head {
    margin-bottom: 36px;
  }

  .pest__label {
    font-size: 17px;
  }

  .pest__title {
    font-size: 34px;
  }

  .pest__desc {
    font-size: 18px;
  }

  .pest__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pest__card-info {
    padding: 20px;
  }

  .pest__card-title {
    font-size: 20px;
  }

  .pest__card-desc {
    font-size: 14px;
  }
}

/* System */
.system {
  padding: 120px 0;
  background-color: #f5f7fa;
}

.system__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

.system__content {
  flex: 0 0 32%;
  min-width: 400px;
  padding-top: 0;
}

.system__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  color: #0f0f0f;
  letter-spacing: -0.03em;
}

.system__title-line {
  display: block;
}

.system__title-point {
  color: #2b8cff;
}

.system__desc {
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: #666;
  letter-spacing: -0.02em;
}

.system__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 52px;
  padding: 0 32px;
  border-radius: 30px;
  background-color: #2b8cff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 16px rgba(43, 140, 255, 0.3);
  transition: background-color 0.2s;
}

.system__btn:hover {
  background-color: #1a7ae8;
}

.system__cards {
  display: flex;
  flex: 1;
  gap: 32px;
  min-width: 0;
}

.system__col {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 32px;
}

.system__col--offset {
  margin-top: 110px;
}

.system__card {
  padding: 36px;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.system__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.system__card-thumb {
  margin-bottom: 28px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.system__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.system__card:hover .system__card-thumb img {
  transform: scale(1.06);
}

.system__card-title {
  margin-bottom: 14px;
  font-size: 30px;
  font-weight: 700;
  color: #0f0f0f;
  letter-spacing: -0.02em;
}

.system__card-desc {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.65;
  color: #666;
  letter-spacing: -0.02em;
}

@media (max-width: 1024px) {
  .system__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }

  .system__content {
    flex: none;
    min-width: 0;
    width: 100%;
  }

  .system__col--offset {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .system {
    padding: 64px 0 80px;
  }

  .system__inner {
    padding: 0 24px;
    gap: 36px;
  }

  .system__title {
    gap: 4px;
    font-size: 30px;
  }

  .system__desc {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .system__btn {
    min-width: 160px;
    height: 50px;
    font-size: 16px;
  }

  .system__cards {
    flex-direction: column;
  }

  .system__card {
    padding: 28px;
  }

  .system__card-title {
    font-size: 22px;
  }

  .system__card-desc {
    font-size: 16px;
  }
}

/* Solution */
.solution {
  padding: 120px 0;
  background-color: #fff;
}

.solution__inner {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

.solution__head {
  margin-bottom: 64px;
  text-align: center;
}

.solution__badge {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin-bottom: 28px;
  padding: 0 28px;
  border-radius: 30px;
  background-color: #2b8cff;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: background-color 0.2s;
}

.solution__badge:hover {
  background-color: #1a7ae8;
}

.solution__title {
  margin-bottom: 24px;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.35;
  color: #0f0f0f;
  letter-spacing: -0.03em;
}

.solution__title-point {
  color: #2b8cff;
}

.solution__desc {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.65;
  color: #555;
  letter-spacing: -0.02em;
}

.solution__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.solution__card {
  overflow: hidden;
  border-radius: 24px;
  background-color: #f5f7fa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.solution__card-thumb {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.solution__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.solution__card:hover .solution__card-thumb img {
  transform: scale(1.06);
}

.solution__card-text {
  padding: 28px 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
  color: #0f0f0f;
  text-align: center;
  letter-spacing: -0.02em;
}

@media (max-width: 1024px) {
  .solution__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .solution {
    padding: 64px 0 80px;
  }

  .solution__inner {
    padding: 0 24px;
  }

  .solution__head {
    margin-bottom: 36px;
  }

  .solution__badge {
    height: 40px;
    margin-bottom: 20px;
    padding: 0 22px;
    font-size: 15px;
  }

  .solution__title {
    font-size: 32px;
  }

  .solution__desc {
    font-size: 18px;
  }

  .solution__grid {
    grid-template-columns: 1fr;
  }

  .solution__card-text {
    padding: 24px 16px;
    font-size: 18px;
  }
}

/* Process */
.process {
  padding: 120px 0;
  background-color: #fff;
}

.process__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

.process__head {
  margin-bottom: 64px;
  text-align: center;
}

.process__badge {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin-bottom: 24px;
  padding: 0 24px;
  border-radius: 30px;
  background-color: #2b8cff;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.process__title {
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.35;
  color: #0f0f0f;
  letter-spacing: -0.03em;
}

.process__subtitle {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.35;
  color: #2b8cff;
  letter-spacing: -0.03em;
}

.process__desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: #666;
  letter-spacing: -0.02em;
}

.process__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process__card {
  display: flex;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background-color: #f5f7fa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.process__card-thumb {
  flex: 0 0 50%;
  min-height: 280px;
  overflow: hidden;
}

.process__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.process__card:hover .process__card-thumb img {
  transform: scale(1.05);
}

.process__card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 40px 48px;
}

.process__step-label {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #2b8cff;
  letter-spacing: 0.04em;
}

.process__card-title {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #0f0f0f;
  letter-spacing: -0.02em;
}

.process__card-point {
  color: #2b8cff;
}

.process__card-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #555;
  letter-spacing: -0.02em;
}

.process__arrow {
  display: block;
  width: 14px;
  height: 14px;
  margin: 20px 0;
  border-right: 2px solid #bbb;
  border-bottom: 2px solid #bbb;
  transform: rotate(45deg);
}

.process__step:last-child .process__arrow {
  display: none;
}

@media (max-width: 1024px) {
  .process__card {
    flex-direction: column;
  }

  .process__card-thumb {
    flex: none;
    width: 100%;
    min-height: 240px;
  }

  .process__card-body {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .process {
    padding: 64px 0 80px;
  }

  .process__inner {
    padding: 0 24px;
  }

  .process__head {
    margin-bottom: 40px;
  }

  .process__title,
  .process__subtitle {
    font-size: 28px;
  }

  .process__desc {
    font-size: 16px;
  }

  .process__card-title {
    font-size: 22px;
  }

  .process__card-desc {
    font-size: 15px;
  }

  .process__card-body {
    padding: 24px;
  }

  .process__card-thumb {
    min-height: 200px;
  }
}

/* Portfolio */
.portfolio {
  padding: 120px 0;
  background-color: #f5f7fa;
}

.portfolio__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

.portfolio__head {
  margin-bottom: 56px;
  text-align: center;
}

.portfolio__label {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 500;
  color: #2b8cff;
  letter-spacing: -0.02em;
}

.portfolio__title {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.35;
  color: #0f0f0f;
  letter-spacing: -0.03em;
}

.portfolio__title-point {
  color: #2b8cff;
}

.portfolio__desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: #555;
  letter-spacing: -0.02em;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.portfolio__card {
  display: block;
  transition: transform 0.3s ease;
}

.portfolio__card:hover {
  transform: translateY(-8px);
}

.portfolio__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
}

.portfolio__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.78) 100%);
}

.portfolio__thumb img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio__card:hover .portfolio__thumb img {
  transform: scale(1.06);
}

.portfolio__category {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  padding: 8px 16px;
  border-radius: 30px;
  background-color: #2b8cff;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.portfolio__info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 28px;
  color: #fff;
}

.portfolio__card-title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.portfolio__card-meta {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
  opacity: 0.9;
}

.portfolio__more {
  margin-top: 56px;
  text-align: center;
}

.portfolio__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 36px;
  border-radius: 30px;
  background-color: #2b8cff;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: background-color 0.2s;
}

.portfolio__btn:hover {
  background-color: #1a7ae8;
}

@media (max-width: 1024px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .portfolio {
    padding: 64px 0 80px;
  }

  .portfolio__inner {
    padding: 0 24px;
  }

  .portfolio__head {
    margin-bottom: 36px;
  }

  .portfolio__label {
    font-size: 17px;
  }

  .portfolio__title {
    font-size: 32px;
  }

  .portfolio__desc {
    font-size: 18px;
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
  }

  .portfolio__info {
    padding: 20px;
  }

  .portfolio__card-title {
    font-size: 20px;
  }

  .portfolio__more {
    margin-top: 40px;
  }

  .portfolio__btn {
    height: 48px;
    padding: 0 28px;
    font-size: 16px;
  }
}

/* Estimate (pre-footer) */
.estimate {
  padding: 80px 0 100px;
  background-color: #3a7fbf;
}

.estimate__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

.estimate__promo {
  flex: 0 0 42%;
  min-width: 0;
}

.estimate__eyebrow {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #c5e4ff;
  letter-spacing: 0.02em;
}

.estimate__title {
  margin-bottom: 32px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  letter-spacing: -0.03em;
}

.estimate__visual {
  display: flex;
  justify-content: flex-start;
}

.phone-mockup {
  position: relative;
  width: min(240px, 100%);
  aspect-ratio: 300 / 590;
  isolation: isolate;
  container-type: inline-size;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.22));
}

.phone-mockup__viewport {
  position: absolute;
  top: calc(40 / 590 * 100%);
  left: calc(17 / 300 * 100%);
  width: calc(266 / 300 * 100%);
  height: calc(530 / 590 * 100%);
  overflow: hidden;
  border-radius: calc(20 / 300 * 100cqw);
  container-type: size;
  z-index: 0;
}

.phone-mockup__content {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
  animation: phone-mockup-scroll 48s ease-in-out infinite alternate;
  will-change: transform;
}

.phone-mockup__frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@keyframes phone-mockup-scroll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-100% + 100cqh));
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-mockup__content {
    animation: none;
    transform: translateY(0);
  }
}

.estimate__form-wrap {
  flex: 1;
  min-width: 0;
}

.estimate__form {
  padding: 36px 40px 32px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.estimate__form-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.estimate__form-logo {
  flex-shrink: 0;
  height: 28px;
  width: auto;
}

.estimate__form-title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
}

.estimate__fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.estimate__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 16px;
}

.estimate__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  letter-spacing: -0.02em;
}

.estimate__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #e74c3c;
  color: #fff;
  font-size: 10px;
  flex-shrink: 0;
}

.estimate__field {
  min-width: 0;
}

.estimate__field--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.estimate__input,
.estimate__select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  background-color: #fff;
  font-size: 14px;
  color: #333;
  letter-spacing: -0.02em;
}

.estimate__input::placeholder {
  color: #aaa;
}

.estimate__select {
  appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.estimate__field--date {
  display: flex;
  gap: 0;
}

.estimate__field--date .estimate__input {
  flex: 1;
  border-right: none;
  border-radius: 2px 0 0 2px;
}

.estimate__calendar-btn {
  flex-shrink: 0;
  height: 44px;
  padding: 0 18px;
  border: 1px solid #2b8cff;
  border-radius: 0 2px 2px 0;
  background-color: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #2b8cff;
  letter-spacing: -0.02em;
}

.estimate__field--captcha {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.estimate__captcha {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 120px;
  height: 44px;
  padding: 0 20px;
  border: 1px solid #d5d5d5;
  background: linear-gradient(180deg, #f8f8f8 0%, #ececec 100%);
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.12em;
  color: #555;
}

.estimate__privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
  color: #444;
  cursor: pointer;
}

.estimate__privacy input {
  width: 16px;
  height: 16px;
  accent-color: #2b8cff;
}

.estimate__privacy a {
  color: #2b8cff;
  text-decoration: underline;
}

.estimate__submit {
  display: block;
  width: 100%;
  height: 52px;
  margin-top: 20px;
  border: 2px solid #2b8cff;
  border-radius: 2px;
  background-color: #fff;
  font-size: 17px;
  font-weight: 700;
  color: #2b8cff;
  letter-spacing: -0.02em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.estimate__submit:hover {
  background-color: #2b8cff;
  color: #fff;
}

@media (max-width: 1200px) {
  .estimate__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .estimate__promo {
    flex: none;
    text-align: center;
  }

  .estimate__visual {
    display: flex;
    justify-content: center;
  }

  .estimate__title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .estimate {
    padding: 56px 0 72px;
  }

  .estimate__inner {
    padding: 0 24px;
    gap: 32px;
  }

  .estimate__title {
    margin-bottom: 24px;
    font-size: 28px;
  }

  .estimate__form {
    padding: 24px 20px 20px;
  }

  .estimate__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .estimate__field--split {
    grid-template-columns: 1fr;
  }

  .estimate__form-title {
    font-size: 18px;
  }
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
}

.footer__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 60px 56px;
}

.footer__cta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__cta-label {
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.footer__cta-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.03em;
}

.footer__cta-contact {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
}

.footer__cta-phone-label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.02em;
}

.footer__cta-phone-row {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.footer__cta-phone {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.footer__cta-phone a:hover {
  color: #8ec8ff;
}

.footer__cta-hours {
  padding-bottom: 6px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.footer__bottom {
  padding-top: 48px;
}

.footer__company-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.01em;
}

.footer__company-block a:hover {
  color: #8ec8ff;
}

.footer__copy {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .footer__cta {
    flex-direction: column;
    gap: 40px;
  }

  .footer__cta-contact {
    align-items: flex-start;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer__inner {
    padding: 56px 24px 40px;
  }

  .footer__cta {
    padding-bottom: 40px;
  }

  .footer__cta-title {
    font-size: 28px;
  }

  .footer__cta-phone-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer__cta-phone {
    font-size: 36px;
  }

  .footer__bottom {
    padding-top: 36px;
  }
}

/* Quickbar */
.quickbar {
  position: fixed;
  top: 50%;
  right: 24px;
  z-index: 200;
  transform: translateY(-50%);
}

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

.quickbar__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  color: #2b8cff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.quickbar__btn:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

@media (min-width: 1025px) {
  .quickbar__btn:hover {
    transform: translateX(-4px);
  }
}

.quickbar__fa {
  font-size: 22px;
  line-height: 1;
}

.quickbar__img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.quickbar__label {
  position: absolute;
  right: calc(100% + 12px);
  padding: 8px 14px;
  border-radius: 8px;
  background-color: #0f0f0f;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.02em;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.quickbar__label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  background-color: #0f0f0f;
  transform: translateY(-50%) rotate(45deg);
}

.quickbar__btn:hover .quickbar__label,
.quickbar__btn:focus-visible .quickbar__label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.quickbar__btn--top {
  background-color: #2b8cff;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.quickbar__btn--top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quickbar__btn--top:hover {
  background-color: #1a7ae8;
}

@media (max-width: 1024px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  .quickbar {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    transform: none;
    background-color: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .quickbar__list {
    flex-direction: row;
    gap: 0;
  }

  .quickbar__list > li {
    flex: 1;
  }

  .quickbar__btn {
    flex-direction: column;
    gap: 5px;
    width: 100%;
    height: auto;
    min-height: 64px;
    padding: 10px 4px;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
  }

  .quickbar__btn:hover {
    background-color: #f5f7fa;
    box-shadow: none;
  }

  .quickbar__fa {
    font-size: 20px;
  }

  .quickbar__img {
    width: 24px;
    height: 24px;
  }

  .quickbar__label {
    display: block;
    position: static;
    padding: 0;
    background-color: transparent;
    color: #666;
    font-size: 11px;
    font-weight: 500;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: none;
  }

  .quickbar__label::after {
    display: none;
  }

  .quickbar__btn--top {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: transparent;
    color: #2b8cff;
  }

  .quickbar__btn--top:hover {
    background-color: #f5f7fa;
  }
}

@media (max-width: 768px) {
  .quickbar__label {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quickbar__btn,
  .quickbar__label,
  .quickbar__btn--top {
    transition: none;
  }
}


/* ========== Sub / Board shared (from main1.css) ========== */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .sub .container {
    padding: 0;
  }
}
.sub_wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 60px;
  box-sizing: border-box;
}
.sub_wrap .container {
  max-width: none;
  padding: 0;
}
.sub .pc { display: block; }
.sub .mo { display: none; }
[data-trigger] {
  opacity: 0;
  position: relative;
  top: 100px;
  transition: 1s ease-out;
}
[data-trigger].visible {
  opacity: 1;
  top: 0;
}

/* ----- Sub pages (main1.css) ----- */
/* sub */
.sub {
    background: #fff;
}
.sub .sub_top {
    background: url(../img/sub/sub_top_bg.png)no-repeat center center;
    background-size: cover;
    padding: 90px 0;
    position: relative;
    margin-top: 0;
    
}
.sub .sub_top .title {
    color: #fff;
}
.sub .sub_top .title h3 {
    color: #fff;
    font-size: 40px;
    line-height: 1.45;
    font-weight: 700;
}
.sub .sub_top .title h1 img {
    width: 580px
}
.sub .sub_top .title p {
    color: #fff;
    font-size: 32px;
    line-height: 1.45;
    font-weight: 500;
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    text-align: center;
}
.sub .sub_menu {   }

.sub .sub_menu h1 {
    margin:0 auto 120px;
    font-size: 40px;
    line-height: 1.45;
    font-weight: 700;
    text-align: center;
}
.sub .sub_menu ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    gap: 10px;
}
.sub .sub_menu ul li {
    flex: 0 0 auto;
    border: 1px solid rgba(0,0,0,0.3);
    margin: 0;
    padding: 5px 20px;
    text-align: center;
    box-sizing: border-box;
}
.sub .sub_menu ul li.active {
    background: rgba(0,0,0,0.3);
}
.sub .sub_menu ul li a {
    display: block;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
    white-space: nowrap;
}
.sub .sub_menu .underline {
    margin-top: 10px;
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.3);
}
.sub .sec1 h1 {
    margin: 60px auto 40px;
    font-size: 40px;
    line-height: 1.45;
    font-weight: 700;
    text-align: center;
}
.sub .sec1 p {
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}
/* sub0201 */
.sub0201 .sec2 {
    text-align: center;
}
.sub0201 .sec2 h2 {
    text-align: center;
    font-size: 24px;
    line-height: 1.45;
    font-weight: 400;
    margin: 100px auto;

}
.sub0201 .sec2 img {
    width: 80%;
}
.sub0201 .sec3 {
    margin: 100px auto;
    height: 400px;
    background: #EDFDFF;
}
.sub0201 .sec3 h2 {
    text-align: center;
    font-size: 24px;
    line-height: 1.45;
    font-weight: 400;
    padding: 50px 0 100px;
    box-sizing: border-box;
}
.sub0201 .sec3 .phone {
    display: flex;
    justify-content: center;
    align-items: center;
}
.left , .right {
    flex: 1;
    text-align: center;
}
.sub0201 .sec3 .phone .left h3 {
    font-size: 64px;
    line-height: 1.45;
    font-weight: 700;
    white-space: nowrap;
}
.sub0201 .sec3 .phone .left p {
    font-size: 24px;
    line-height: 1.45;
    font-weight: 400;
    white-space: nowrap;
}
.sub0201 .sec3 .phone .right {
    font-size: 64px;
    line-height: 1.45;
    font-weight: 700;
}
.sub0201 .sec4 {
    margin-bottom: 100px;
}
.sub0201 .sec4 h2 {
    text-align: center;
    font-size: 24px;
    line-height: 1.45;
    font-weight: 400;
    margin: 100px auto;

}
.sub0201 .sec4 .sms {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub0201 .sec4 .sms .box_wrap {
    width: 471px;
    height: 208px;
    background: #d9d9d9;
    padding: 20px 50px;
    box-sizing: border-box;
}
.sub0201 .sec4 .sms .box_wrap .box {
    position: relative;
}

.sub0201 .sec4 .sms .box_wrap h3 {
    font-size: 32px;
    line-height: 1.45;
    font-weight: 700;
    margin-bottom: 20px;
  
}
.sub0201 .sec4 .sms .box_wrap form .input1 {
    margin-bottom: 10px;
}
.sub0201 .sec4 .sms .box_wrap form span {
    width: 80px;
    display: inline-block;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
}
.sub0201 .sec4 .sms .box_wrap form button {
    background: #000;
    padding: 5px 20px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    position: absolute;
    right: 0;
    top: 70px;
    
}
.sub0201 .sec4 .sms .box_wrap p {
    font-size: 14px;
    line-height: 1.45;
    font-weight: 200;
    margin-top: 10px;
}
.sub0201 .sec4 .sms .txt {
    width: 471px;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 200;
    text-align: center;
}
.sub0201 .sec4 .sms input[type="submit"] {
    font-size: 14px;
    color: #fff;
    background: #045AFF;
    border-radius: 10px;
    padding: 0 20px;
}


.sub0202 .sec2 h2 {
    margin-top: 100px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.45;
}
.sub0202 .sec2 .underline {
    width: 70px;
    height: 5px;
    background: rgba(0,0,0,0.3);
    margin: 5px 0 20px;
}
.sub0202 .sec2 .wrap {
    width: 100%;
    margin-bottom: 30px;
    height: auto;
    background: #DAFFF8;
}
.sub0202 .sec2 .wrap p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    padding: 20px;
}
.sub0202 .sec2 .proc {
    margin-top: 100px auto;
    display: flex;
    justify-content: center;
}
.sub0202 .sec2 .proc li {
    width: 260px;
    margin: 100px 10px;
    
}
.sub0202 .sec2 .proc li h3 {
    text-align: center;
    background: #045AFF;
    font-size: 18px;
    line-height: 56px;
    color: #fff;
    font-weight: 700;

}
.sub0202 .sec2 .proc li p {
    text-align: center;
    background: #04A5FF;
    font-size: 14px;
    line-height: 1.45;
    color: #fff;
    font-weight: 400;
    padding: 50px 0;
}
.sub0202 .sec3 h2 {
    font-size: 32px;
    line-height: 1.45;
    font-weight: 700;
    margin-top: 100px;
}
.sub0202 .sec3 p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
} 
.sub0202 .sec4 h2 {
    font-size: 32px;
    line-height: 1.45;
    font-weight: 700; 
    margin-top: 100px;
}
.sub0202 .sec4 p {
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
    margin: 20px 0 100px;
}
.sub0203 .sec2 .txt1 {
    text-align: center;
    font-size: 32px;
    line-height: 1.45;
    font-weight: 400;
    margin: 100px auto 30px;
}
.sub0203 .sec2 .img1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px 80px;
    margin: 0 auto 20px;
}
.sub0203 .sec2 .img1 img {
    display: block;
    width: 179px;
    height: 179px;
    margin: 0;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.sub0203 .sec2 .proc {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 16px;
    margin: 60px auto 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}
.sub0203 .sec2 .proc li {
    flex: 1 1 0;
    min-width: 0;
    max-width: 220px;
    margin: 0;
    box-sizing: border-box;
}
.sub0203 .sec2 .proc li h3 {
    text-align: center;
    background: #045AFF;
    font-size: 18px;
    line-height: 56px;
    color: #fff;
    font-weight: 700;
    margin: 0;
}
.sub0203 .sec2 .proc li p {
    text-align: center;
    background: #04A5FF;
    font-size: 14px;
    line-height: 1.7;
    color: #fff;
    font-weight: 400;
    padding: 40px 12px;
    margin: 0;
    min-height: 140px;
    box-sizing: border-box;
}
.sub0203 .sec2 .txt2 {
    text-align: center;
    font-size: 32px;
    line-height: 2;
    font-weight: 400;
    margin: 100px auto 30px;
}
.sub0203 .sec2 .txt2 span {
    text-align: center;
    font-size: 52px;
    line-height: 2;
    font-weight: 700;
}
.sub0203 .sec2 .underline {
    width: 70px;
    height: 5px;
    background: #000;
    margin: 0 auto 30px;
}
.sub0203 .sec2 .txt3 {
    text-align: center;
    font-size: 32px;
    line-height: 1.45;
    font-weight: 400;
    margin: 0 auto 50px;
}
.sub0203 .sec2 .img2 {
    text-align: center;
    margin: 0 auto 120px;
    width: 100%;
}
.sub0203 .sec2 .img2 img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.sub0203 .sec3 h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.45;
}
.sub0203 .sec3 .underline {
    width: 70px;
    height: 5px;
    background: rgba(0,0,0,0.3);
    margin: 5px 0 20px;
}
.sub0203 .sec3 p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}
.sub0203 .sec3 .proc {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 24px;
    margin: 60px auto 0;
    padding: 0;
    list-style: none;
}
.sub0203 .sec3 .proc li {
    flex: 1 1 0;
    min-width: 0;
    max-width: 260px;
    margin: 0;
}
.sub0203 .sec3 .proc li h3 {
    text-align: center;
    background: #045AFF;
    font-size: 18px;
    line-height: 56px;
    color: #fff;
    font-weight: 700;
    margin: 0;
}
.sub0203 .sec3 .proc li p {
    text-align: center;
    background: #04A5FF;
    font-size: 14px;
    line-height: 1.7;
    color: #fff;
    font-weight: 400;
    padding: 50px 12px;
    margin: 0;
    min-height: 160px;
    box-sizing: border-box;
}
.sub0204 .sec2 .txt1 {
    text-align: center;
    font-size: 28px;
    line-height: 1.45;
    font-weight: 400;
    margin: 100px auto 30px;
}
.sub0204 .sec2 .img1 {
    margin-top:100px;
    white-space: nowrap;
    text-align: center;
    position: relative;
}
.sub0204 .sec2 .img1 img {
    display: inline-block;
    margin: 0 10px;
    width: 22.3%;
}
.sub0204 .sec2 .img2 {
    margin: 100px auto;
    width: 100%;
}
.sub0204 .sec2 .img2 img {
    width: 100%;
}

.sub03 .sec2 {
    margin-top: 100px;
}
.sub03 .sec2 h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.45;
}

.sub03 .sec2 .underline {
    width: 70px;
    height: 5px;
    background: rgba(0,0,0,0.3);
    margin: 8px 0 28px;
}

.sub03 .sec2 p {
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    word-break: keep-all;
}
.sub03 .sec3 {
    margin-top: 100px;
}
.sub03 .sec3 h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.45;
}

.sub03 .sec3 .underline {
    width: 70px;
    height: 5px;
    background: rgba(0,0,0,0.3);
    margin: 8px 0 30px;
}
.sub03 .sec3 .table {
    margin-top: 50px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.sub03 .sec3 .table table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    border-collapse: collapse;
}
.sub03 .sec3 .table th,
.sub03 .sec3 .table td {
    border: 1px solid rgba(0,0,0,0.3);
    padding: 20px 10px;
    text-align: center;
    vertical-align: middle;
    word-break: keep-all;
    overflow-wrap: break-word;
}
.sub03 .sec3 .table [data-trigger] {
    top: 0;
    opacity: 1;
    transform: none;
}
.sub03 .sec3 .table th {
    background: #04A5FF;
    color: #fff;
    font-weight: 700;
}
.sub03 .sec3 .table img {
    display: block;
    width: 72px;
    height: 72px;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 50%;
}
.sub03 .sec3 p {
    margin: 30px 20px 50px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}
.sub03 .sec3 .img2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: center;
    white-space: normal;
}
.sub03 .sec3 .img2 img {
    display: block;
    margin: 0;
    width: calc(25% - 12px);
    max-width: 220px;
    height: auto;
}
.sub03 .sec3 .img2 img:first-of-type,
.sub03 .sec3 .img2 img:last-of-type {
    margin: 0;
}

@media (max-width: 768px) {
  .sub03 .sec2 {
    margin-top: 64px;
  }
  .sub03 .sec2 h2,
  .sub03 .sec3 h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
  }
  .sub03 .sec2 .underline,
  .sub03 .sec3 .underline {
    width: 48px;
    height: 4px;
    margin: 8px 0 20px;
  }
  .sub03 .sec2 p {
    font-size: 14px;
    line-height: 1.9;
  }
  .sub03 .sec3 {
    margin-top: 64px;
  }
  .sub03 .sec3 .table {
    margin-top: 24px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .sub03 .sec3 .table table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    border-collapse: collapse;
  }
  .sub03 .sec3 .table colgroup {
    display: table-column-group;
  }
  .sub03 .sec3 .table tr:first-child {
    display: table-row;
  }
  .sub03 .sec3 .table tr:not(:first-child) {
    display: table-row;
    margin: 0;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
  }
  .sub03 .sec3 .table th,
  .sub03 .sec3 .table td {
    display: table-cell;
    width: auto;
    margin: 0;
    padding: 10px 4px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    text-align: center;
    vertical-align: middle;
    font-size: 11px;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: break-word;
    box-sizing: border-box;
  }
  .sub03 .sec3 .table th:nth-child(1),
  .sub03 .sec3 .table td:nth-child(1) {
    width: 18%;
  }
  .sub03 .sec3 .table th:nth-child(2),
  .sub03 .sec3 .table td:nth-child(2) {
    width: 18%;
  }
  .sub03 .sec3 .table th:nth-child(3),
  .sub03 .sec3 .table td:nth-child(3) {
    width: 28%;
  }
  .sub03 .sec3 .table th:nth-child(4),
  .sub03 .sec3 .table td:nth-child(4) {
    width: 36%;
  }
  .sub03 .sec3 .table tr:not(:first-child) td {
    display: table-cell;
    grid-template-columns: none;
    gap: 0;
    text-align: center;
  }
  .sub03 .sec3 .table tr:not(:first-child) td::before {
    content: none;
    display: none;
  }
  .sub03 .sec3 .table th {
    background: #04A5FF;
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    padding: 10px 2px;
  }
  .sub03 .sec3 .table img {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
  }
  .sub03 .sec3 .img2 {
    margin-top: 48px;
    margin-bottom: 48px;
    gap: 8px;
  }
  .sub03 .sec3 .img2 img {
    width: calc(50% - 8px);
    max-width: none;
  }
}

.sub05 .sec2 .sec2_01 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin:100px auto
} 
.sub05 .sec2 .sec2_01 .img1 {
    width: 100%;
}
.sub05 .sec2 .sec2_01 .img1 img {
    width: 60%;
}
.sub05 .sec2 .sec2_01 .txt1 {
    font-size: 20px;
    font-weight: 400;
    line-height: 2.5;
    margin-left: -250px;
    white-space: nowrap;
}
.sub05 .sec3 .txt1 {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
}
.sub05 .sec4 {
    margin: 100px auto;
    text-align: center;
}
.sub05 .sec4 h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.45;
}
.sub05 .sec4 .underline {
    width: 70px;
    height: 5px;
    background: rgba(0,0,0,0.3);
    margin: 5px auto 20px;
}
.sub05 .sec4 .table {
    margin:100px auto 0;
    width: 100%;
}
.sub05 .sec4 .table table {
    width: 50%;
    margin: 0 auto;
}
.sub05 .sec4 .table table th,.sub05 .sec4 .table table td {
    border: 1px solid rgba(0,0,0,0.3);
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
}
.sub05 .sec4 .table table th {
    background: rgba(0,0,0,0.2);
}
.sub05 .sec5 .img2 {
    margin-top:100px;
    margin-bottom: 100px;
    white-space: nowrap;
    text-align: center;
    position: relative;
}
.sub05 .sec5 .img2 img {
    display: inline-block;
    margin: 0 10px;
    width: 22.3%;
}
.sub05 .sec6 {
    margin: 100px auto;
    text-align: center;
    scroll-margin-top: 24px;
}
.sub05 .sec6 h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.45;
}
.sub05 .sec6 .underline {
    width: 70px;
    height: 5px;
    background: rgba(0,0,0,0.3);
    margin: 5px auto 20px;
}
.sub05 .sec6 .map {
    margin:100px auto 0;
    width: 100%;
}
.img3 {
    margin-top:100px;
    margin-bottom: 100px;
    white-space: nowrap;
    text-align: center;
    position: relative;
}
.img3 img {
    display: inline-block;
    margin: 0 10px;
    width: 22.3%;
}


/* 게시판 — 메인 섹션 컨테이너(1600px)에 맞춤 */
#bo_list, #bo_w, #bo_v,#bo_gall {
    max-width: 1600px;
    margin: 60px auto 100px;
    padding: 40px 60px;
    box-sizing: border-box;
}
.sub_wrap #bo_list,
.sub_wrap #bo_w,
.sub_wrap #bo_v,
.sub_wrap #bo_gall {
    max-width: none;
    width: 100% !important;
    margin: 0;
    padding: 0;
}
@media (max-width: 1024px) {
  .sub_wrap {
    padding: 60px 24px;
  }
  #bo_list, #bo_w, #bo_v, #bo_gall {
    padding: 32px 24px;
  }
  .sub_wrap #bo_list,
  .sub_wrap #bo_w,
  .sub_wrap #bo_v,
  .sub_wrap #bo_gall {
    padding: 0;
  }
}
#bo_list table th,#bo_list table td {
    text-align: center !important;
}
#formmail-write {
    max-width: 1000px;
    margin: 100px auto;
}
#txt_ex1 {
    position: absolute;
    line-height: 41px;
    margin-left: 50px;
}
#txt_ex2 {
    position: absolute;
    line-height: 41px;
    margin-left: 50px;
}
.form-con {
    max-width: 1400px;
    /* padding: 15px 0; */
    margin: 0 auto;
    box-sizing: border-box;
}
.form-con ul {
    display: flex;
    justify-content: center;
}
.form-con ul li {
    margin: 0 20px;
}
.fl-ttl {
    font-size: 24px;
    font-weight: 700;
    line-height: 60px;
}
.fl-name {
    font-size: 24px;
    font-weight: 400;
    line-height: 60px;
}
.fl-p {
    font-size: 16px;
    font-weight: 400;
    line-height: 60px;
}
.form-con input {
    height: 30px;
    vertical-align: super;
}
.receive-btn{
    position: relative;
    top: 15px;
}
.form-con input.btn {
    padding: 0 10px;
    background: #000;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
    vertical-align: middle;
    line-height: 30px;
}

.hicop_adm .sub_menu ul li:hover {
    background: #045AFF;
    color: #fff;
}
.hicop_adm .sub_menu ul li:hover a {
    color: #fff;
}
.sub04 #bo_v_con img {
    max-width: 100%;
    height: auto;
    display: none;
}
 .sub.sub0407 .sub_menu ul li {
    border: none !important;
 }


/* ----- Sub/Board mobile (main1.css) ----- */
@media screen and (max-width: 480px) {
  .sub .pc { display: none; }
  .sub .mo { display: block; }
  .sub .container,
  .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .sub_wrap {
    padding: 50px 24px;
    border-left: none;
    border-right: none;
  }
    .sub_wrap {
        max-width: 1600px;
        margin: 0 auto;
        background: rgba(255,212,0,0.01);
        padding: 30px 18px;
        border-left: none;
        border-right: none;
    }
    .form-con {
        max-width: 1400px;
        /* padding: 15px 0; */
        margin: 0 auto;
        box-sizing: border-box;
    }
    .form-con ul {
        display: flex;
        justify-content: center;
    }
    .form-con ul li {
        margin: 0 5px;
    }
    .fl-ttl {
        font-size: 8px;
        font-weight: 700;
        line-height: 30px;
    }
    .fl-name {
        font-size: 10px;
        font-weight: 400;
        line-height: 30px;
    }
    .fl-p {
        font-size: 8px;
        font-weight: 400;
        line-height: 30px;
    }
    .form-con input {
        height: 20px;
        vertical-align: text-bottom;
        width: 100px;
    }
    .receive-btn{
        position: relative;
        top: 3px;
    }
    .form-con input.btn {
        padding: 0 5px;
        background: #000;
        color: #fff;
        border-radius: 3px;
        font-size: 8px;
        vertical-align: middle;
        line-height: 20px;
        width: 40px;
    }
    .sub .sub_top .title h3 {
        color: #fff;
        font-size: 20px;
        line-height: 1.45;
        font-weight: 700;
        padding: 0 20px;
    }
    .sub .sub_top .title h1 img {
        width: 120px;
        padding: 0 20px;
    }
    .sub .sub_top .title p {
        font-size: 10px;
    }
    .sub .sub_menu h1 {
        margin: 0 auto 80px;
        font-size: 28px;
        line-height: 1.45;
        font-weight: 700;
        text-align: center;
    }
    .sub .sec1 h1 {
        margin: 40px auto 28px;
        font-size: 28px;
        line-height: 1.45;
        font-weight: 700;
        text-align: center;
    }
    .sub .sec1 p {
        text-align: center;
        font-size: 14px;
        line-height: 1.6;
        font-weight: 400;
    }
    #bo_list, #bo_w, #bo_v, #bo_gall {
        max-width: 100%;
        margin: 40px auto 60px;
        padding: 24px 18px;
    }
    .sub_wrap #bo_list,
    .sub_wrap #bo_w,
    .sub_wrap #bo_v,
    .sub_wrap #bo_gall {
        margin: 0;
        padding: 0;
    }
  .sub .sub_menu ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    gap: 4px;
  }
  .sub .sub_menu ul li {
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
    padding: 5px 2px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    text-align: center;
    box-sizing: border-box;
  }
  .sub .sub_menu ul li a {
    display: block;
    font-size: 10px;
    line-height: 1.35;
    font-weight: 400;
    white-space: nowrap;
  }
    .sub0201 .sec3 .phone {
        display: block;
        
    }
    .sub0201 .sec3 .phone .left h3 {
        font-size: 28px;
        line-height: 1.45;
        font-weight: 700;
    }
    .sub0201 .sec3 .phone .left p {
        font-size: 12px;
        line-height: 1.45;
        font-weight: 400;
    }
    .sub0201 .sec3 .phone .right {
        font-size: 48px;
        line-height: 1.45;
        font-weight: 700;
    }
    .sub0201 .sec4 .sms {
        display: block;
        justify-content: center;
        align-items: center;
        padding: 0 10px;
        margin: 0 auto;
    }
    .sub0201 .sec4 .sms .box_wrap h3 {
        font-size: 18px;
        line-height: 1.45;
        font-weight: 700;
        margin-bottom: 20px;
    }
    .sub0201 .sec4 .sms .box_wrap {
        width: 340px;
        height: 200px;
        background: #d9d9d9;
        padding: 20px 10px;
        box-sizing: border-box;
      }
    .sub0201 .sec4 .sms .box_wrap form span {
        width: 40px;
        display: inline-block;
        font-size: 12px;
        line-height: 1.45;
        font-weight: 400;
    }
    .sub0201 .sec4 .sms .box_wrap .receive-btn {
        position: relative;
        top: 15px;
      }
    .sub0201 .sec4 .sms .txt {
        width: auto;
        font-size: 12px;
        line-height: 1.45;
        font-weight: 200;
        text-align: center;
        margin-top: 30px;
    }
    .sub0202 .sec2 h2 {
        margin-top: 100px;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.45;
    }
    .sub0202 .sec2 .underline {
        width: 40px;
        height: 5px;
        background: rgba(0,0,0,0.3);
        margin: 5px 0 20px;
    }
    .sub0202 .sec2 .wrap p {
        font-size: 10px;
        font-weight: 400;
        line-height: 1.8;
        padding: 20px;
    }
    .sub0202 .sec2 .proc li p {
        text-align: center;
        background: #04A5FF;
        font-size: 8px;
        line-height: 1.45;
        color: #fff;
        font-weight: 400;
        padding: 20px 0;
    }
    .sub0202 .sec2 .proc li h3 {
        text-align: center;
        background: #045AFF;
        font-size: 12px;
        line-height: 40px;
        color: #fff;
        font-weight: 700;
    }
    .sub0202 .sec3 h2 {
        font-size: 18px;
        line-height: 1.45;
        font-weight: 700;
        margin-top: 50px;
    }
    .sub0202 .sec3 p {
        margin-top: 20px;
        font-size: 10px;
        line-height: 1.45;
        font-weight: 400;
    }
    .sub0202 .sec4 h2 {
        font-size: 18px;
        line-height: 1.45;
        font-weight: 700;
        margin-top: 50px;
    }
    .sub0202 .sec4 p {
        font-size: 10px;
        line-height: 1.45;
        font-weight: 400;
        margin: 20px 0 50px;
    }
    .sub0203 .sec2 .txt1 {
        text-align: center;
        font-size: 18px;
        line-height: 1.45;
        font-weight: 400;
        margin: 50px auto 20px;
    }
    .sub0203 .sec2 .img1 {
        gap: 16px 24px;
    }
    .sub0203 .sec2 .img1 img {
        width: 120px;
        height: 120px;
        margin: 0;
    }
    .sub0203 .sec2 .proc {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 40px;
    }
    .sub0203 .sec2 .proc li {
        flex: 1 1 calc(50% - 10px);
        max-width: none;
        width: auto;
        margin: 0;
    }
    .sub0203 .sec2 .proc li h3 {
        text-align: center;
        background: #045AFF;
        font-size: 12px;
        line-height: 40px;
        color: #fff;
        font-weight: 700;
    }
    .sub0203 .sec2 .proc li p {
        text-align: center;
        background: #04A5FF;
        font-size: 8px;
        line-height: 1.7;
        color: #fff;
        font-weight: 400;
        padding: 20px 6px;
        min-height: 110px;
    }
    .sub0203 .sec2 .txt2 {
        text-align: center;
        font-size: 18px;
        line-height: 2;
        font-weight: 400;
        margin: 50px auto 20px;
    }
    .sub0203 .sec2 .txt2 span {
        text-align: center;
        font-size: 32px;
        line-height: 2;
        font-weight: 700;
    }
    .sub0203 .sec2 .txt3 {
        text-align: center;
        font-size: 18px;
        line-height: 1.45;
        font-weight: 400;
        margin: 0 auto 30px;
    }
    .sub0203 .sec3 h2 {
        font-size: 18px;
        font-weight: 400;
        line-height: 1.45;
    }
    .sub0203 .sec3 p {
        font-size: 10px;
        font-weight: 400;
        line-height: 1.8;
    }
    .sub0203 .sec3 .proc {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 40px;
    }
    .sub0203 .sec3 .proc li {
        flex: 1 1 calc(50% - 10px);
        max-width: none;
        width: auto;
        margin: 0;
    }
    .sub0203 .sec3 .proc li h3 {
        text-align: center;
        background: #045AFF;
        font-size: 12px;
        line-height: 40px;
        color: #fff;
        font-weight: 700;
    }
    .sub0203 .sec3 .proc li p {
        text-align: center;
        background: #04A5FF;
        font-size: 10px;
        line-height: 1.7;
        color: #fff;
        font-weight: 400;
        padding: 20px 6px;
        min-height: 120px;
    }
    .sub0204 .sec2 .txt1 {
        text-align: center;
        font-size: 14px;
        line-height: 1.45;
        font-weight: 400;
        margin: 50px auto 20px;
    }
    .sub0204 .sec2 .img1 {
        margin-top: 50px;
        white-space: nowrap;
        text-align: center;
        position: relative;
    }
    .sub0204 .sec2 .img1 img {
        display: inline-block;
        margin: 0 2px;
        width: 22.3%;
    }
    .sub0204 .sec2 .img2 {
        margin: 50px auto;
        width: 100%;
    }
    .sub03 .sec2 h2 {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.45;
    }
    .sub03 .sec2 .underline {
        width: 48px;
        height: 4px;
        background: rgba(0,0,0,0.3);
        margin: 8px 0 20px;
    }
    .sub03 .sec2 p {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.9;
    }
    .sub03 .sec3 {
        margin-top: 64px;
    }
    .sub03 .sec3 h2 {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.45;
    }
    .sub03 .sec3 .img2 {
        margin-top: 48px;
        margin-bottom: 48px;
        white-space: normal;
        text-align: center;
        position: relative;
    }
    .sub03 .sec3 .img2 img {
        display: block;
        margin: 0;
        width: calc(50% - 8px);
    }
    #formmail-write {
        max-width: 100%;
        margin: 50px auto;
    }
    #formmail-write .form-group.col4 > label {
        width: 20%;
        font-size: 12px;
        padding: 0 10px;
    }
    #formmail-write .form-group > label {
        padding: 0 10px;
        width: 20%;
        font-size: 12px;
    }
    #formmail-write .form-group .form-control {
        width: 100%;
        padding: 8px 10px;
        border: 1px solid #e0dedf;
        font-size: 10px;
    }
    .img3 {
        margin-top: 50px;
        margin-bottom: 50px;
        white-space: nowrap;
        text-align: center;
        position: relative;
    }
    .img3 img {
        display: inline-block;
        margin: 0 2px;
        width: 22.3%;
    }
    #formmail-write .form-group.col4 > div {
        width: 30%;
        font-size: 10px;
    }
    .sub05 .sec2 .sec2_01 {
        display: block;
        justify-content: center;
        align-items: center;
        margin: 50px auto;
        text-align: center;
    }
    .sub05 .sec2 .sec2_01 .img1 {
        width: 100%;
        text-align: center;
        margin: 50px auto;
    }
    .sub05 .sec2 .sec2_01 .txt1 {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.8;
        margin-left: 0;
        white-space: nowrap;
    }
    .sub05 .sec3 .txt1 {
        text-align: center;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.45;
    }
    .sub05 .sec4 {
        margin: 50px auto;
        text-align: center;
    }
    .sub05 .sec4 h2 {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.45;
    }
    .sub05 .sec4 .table {
        margin: 50px auto 0;
        width: 100%;
    }
    .sub05 .sec4 .table table {
        width: 100%;
        margin: 0 auto;
    }
    .sub05 .sec4 .table table th, .sub05 .sec4 .table table td {
        border: 1px solid rgba(0,0,0,0.3);
        padding: 10px 10px;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.45;
    }
    .sub05 .sec5 .img2 {
        margin-top: 50px;
        margin-bottom: 50px;
        white-space: nowrap;
        text-align: center;
        position: relative;
    }
    .sub05 .sec5 .img2 img {
        display: inline-block;
        margin: 0 2px;
        width: 22.3%;
    }
    .sub05 .sec6 {
        margin: 50px auto;
        text-align: center;
    }
    .sub05 .sec6 h2 {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.45;
    }
    .sub05 .sec6 .map {
        margin:50px auto 0;
        width: 100%;
    }
}

/* ----- Admin board list (admin-board-list.css) ----- */
/**
 * 하이캅 관리자 게시판 목록 (admin/hicopadmin 목록 보기)
 * body.hicop-admin-board-list
 */

/* ── 상단 관리 바 ───────────────────────────────────────── */
.hicop-admin-list-bar {
    position: sticky;
    top: 0;
    z-index: 502;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.hicop-admin-list-bar__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 12px 20px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px 20px;
    align-items: center;
}

@media (min-width: 1100px) {
    .hicop-admin-list-bar__inner {
        grid-template-columns: auto minmax(0, 280px) 1fr;
    }
}

.hicop-admin-list-bar__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e40af;
    background: rgba(59, 130, 246, 0.1);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.hicop-admin-list-bar__back::before {
    content: "";
    width: 8px;
    height: 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-right: -2px;
}

.hicop-admin-list-bar__back:hover {
    background: rgba(59, 130, 246, 0.18);
}

.hicop-admin-list-bar__title {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hicop-admin-list-bar__links {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

@media (min-width: 1100px) {
    .hicop-admin-list-bar__links {
        grid-column: auto;
        justify-content: flex-end;
    }
}

body.hicop-admin-board-list .hicop-mini-nav {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
    background: #fff;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        color 0.15s ease;
}

body.hicop-admin-board-list .hicop-mini-nav:hover {
    border-color: #93c5fd;
    color: #2563eb;
}

body.hicop-admin-board-list .hicop-mini-nav.is-active {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #1d4ed8;
}

/* ── 페이지 배경 · 로그인 박스 정리 ───────────────────────── */
body.hicop-admin-board-list {
    background: #f1f5f9 !important;
}

body.hicop-admin-board-list #hd_login_msg {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

body.hicop-admin-board-list #site-header {
    position: relative;
    z-index: 499;
}

/* ── 게시판 목록 래퍼 카드 ─────────────────────────────────── */
body.hicop-admin-board-list #bo_list {
    float: none !important;
    width: min(1200px, calc(100% - 48px)) !important;
    max-width: 1200px !important;
    margin: 24px auto 48px !important;
    padding: 24px 28px 28px !important;
    box-sizing: border-box !important;
    background: #fff;
    border-radius: 24px !important;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow:
        0 4px 24px rgba(15, 23, 42, 0.06),
        0 24px 64px rgba(15, 23, 42, 0.05);
}

/* 상세보기 카드 — 목록과 동일하게 안쪽 여백 강제 */
body.hicop-admin-board-list #bo_v,
body.hicop-admin-board-list .sub_wrap #bo_v,
body.hicop-admin-board-list #bo_v.bo_v_admin {
    float: none !important;
    display: block !important;
    width: min(1200px, calc(100% - 48px)) !important;
    max-width: 1200px !important;
    margin: 24px auto 48px !important;
    padding: 32px 36px 36px !important;
    box-sizing: border-box !important;
    background: #fff !important;
    border-radius: 24px !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    box-shadow:
        0 4px 24px rgba(15, 23, 42, 0.06),
        0 24px 64px rgba(15, 23, 42, 0.05) !important;
}

body.hicop-admin-board-list #bo_v #bo_v_title {
    margin: 0 0 12px !important;
    padding: 0 !important;
}

body.hicop-admin-board-list #bo_v #bo_v_info.bo_v_info_inquiry {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 0 20px !important;
    border-bottom: 1px solid #eef2f7 !important;
}

body.hicop-admin-board-list #bo_v #bo_v_info.bo_v_info_inquiry::after {
    display: none !important;
    content: none !important;
}

body.hicop-admin-board-list #bo_v #bo_v_info.bo_v_info_inquiry .inquiry_meta,
body.hicop-admin-board-list #bo_v #bo_v_info.bo_v_info_inquiry .profile_info {
    float: none !important;
    flex: 1 1 auto !important;
    margin: 0 !important;
    padding-right: 8px !important;
}

body.hicop-admin-board-list #bo_v #bo_v_top {
    float: none !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 0 0 auto !important;
    margin: 0 0 0 auto !important;
    padding: 0 !important;
}

body.hicop-admin-board-list #bo_v #bo_v_top .bo_v_com,
body.hicop-admin-board-list #bo_v #bo_v_top .btn_bo_user {
    float: none !important;
    display: flex !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.hicop-admin-board-list #bo_v #bo_v_top::after {
    display: none !important;
    content: none !important;
}

body.hicop-admin-board-list #bo_list .tbl_wrap,
body.hicop-admin-board-list #bo_list #bo_btn_top {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

body.hicop-admin-board-list #bo_gall {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.hicop-admin-board-list #container .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
}

body.hicop-admin-board-list .sub_content {
    background: transparent !important;
}

/* online 등 서브 히어로·상단 제목은 관리바와 중복되므로 숨김 */
body.hicop-admin-board-list .sub.sub04.sub0407 .sub_top,
body.hicop-admin-board-list .sub.sub04.sub0407 .sub_menu {
    display: none !important;
}

/* 상단 카운트 + 툴바 */
body.hicop-admin-board-list #bo_btn_top,
body.hicop-admin-board-list .bo_fx {
    display: flex !important;
    align-items: center;
    justify-content: space-between !important;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px !important;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0 !important;
    overflow: visible !important;
}


body.hicop-admin-board-list #bo_list_total,
body.hicop-admin-board-list #bo_btn_top #bo_list_total,
body.hicop-admin-board-list .bo_fx #bo_list_total {
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
}

body.hicop-admin-board-list #bo_list_total span,
body.hicop-admin-board-list .page_info {
    margin-right: 8px;
}

body.hicop-admin-board-list .btn_bo_user {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px !important;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

body.hicop-admin-board-list .btn_bo_user > li {
    position: relative;
}

/* 상단바 직속 버튼만 (그누 기본: btn_b01/b02/admin, 또는 .btn ·⋯ 제외) */
body.hicop-admin-board-list .btn_bo_user > li > a.btn,
body.hicop-admin-board-list .btn_bo_user > li > a.btn_b01,
body.hicop-admin-board-list .btn_bo_user > li > a.btn_b02,
body.hicop-admin-board-list .btn_bo_user > li > a.btn_admin,
body.hicop-admin-board-list .btn_bo_user > li > button {
    min-width: 44px;
    min-height: 44px;
    padding: 0 14px !important;
    box-sizing: border-box;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    background: #f8fafc !important;
    color: #475569 !important;
    text-decoration: none !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    transition:
        background 0.15s,
        border-color 0.15s,
        color 0.15s;
}

body.hicop-admin-board-list .btn_bo_user > li > a.btn:hover,
body.hicop-admin-board-list .btn_bo_user > li > a.btn_b01:hover,
body.hicop-admin-board-list .btn_bo_user > li > button:hover {
    background: #eff6ff !important;
    border-color: #bfdbfe !important;
    color: #2563eb !important;
}

body.hicop-admin-board-list .btn_bo_user > li > a.btn_b02 {
    background: #2563eb !important;
    border-color: #1d4ed8 !important;
    color: #fff !important;
}

body.hicop-admin-board-list .btn_bo_user > li > a.btn_b02:hover {
    background: #1d4ed8 !important;
    border-color: #1e40af !important;
    color: #fff !important;
}

body.hicop-admin-board-list .btn_bo_user > li > a.btn_admin {
    border-color: #fecaca !important;
    background: #fef2f2 !important;
    color: #b91c1c !important;
}

body.hicop-admin-board-list .btn_bo_user > li > a.btn_admin:hover {
    background: #fee2e2 !important;
    border-color: #fca5a5 !important;
    color: #991b1b !important;
}

body.hicop-admin-board-list .btn_bo_adm {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body.hicop-admin-board-list .btn_bo_adm input[type="submit"] {
    min-height: 44px;
    padding: 0 18px !important;
    border-radius: 12px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    cursor: pointer;
}

/* ⋯ 선택삭제/복사/이동 드롭다운 — 기본 그누보드와 동일하게 절대배치 */
body.hicop-admin-board-list .btn_bo_user ul.more_opt,
body.hicop-admin-board-list .btn_bo_user .more_opt.is_list_btn {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;
    left: auto !important;
    width: auto !important;
    min-width: 160px !important;
    max-width: 240px;
    padding: 6px !important;
    margin: 0 !important;
    list-style: none !important;
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.04),
        0 14px 32px rgba(15, 23, 42, 0.12) !important;
    z-index: 10001 !important;
}

body.hicop-admin-board-list .btn_bo_user .more_opt.is_list_btn li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

body.hicop-admin-board-list .btn_bo_user .more_opt.is_list_btn li + li button {
    border-top: none !important;
}

body.hicop-admin-board-list .btn_bo_user .more_opt.is_list_btn li button {
    min-width: 0 !important;
    min-height: 0 !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding: 12px 14px !important;
    border-radius: 10px !important;
    border: none !important;
    border-bottom: none !important;
    background: #fff !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #475569 !important;
    white-space: nowrap;
    text-align: left !important;
}

body.hicop-admin-board-list .btn_bo_user .more_opt.is_list_btn li:not(:last-child) button {
    margin-bottom: 2px !important;
}

body.hicop-admin-board-list .btn_bo_user .more_opt.is_list_btn li button:hover {
    background: #f1f5f9 !important;
    border-color: transparent !important;
    color: #0f172a !important;
}

/* 테이블 */
body.hicop-admin-board-list .tbl_head01.tbl_wrap,
body.hicop-admin-board-list .tbl_wrap {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

body.hicop-admin-board-list .tbl_head01 caption {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

body.hicop-admin-board-list .tbl_head01 table {
    width: 100% !important;
    border-collapse: collapse;
    font-size: 0.95rem;
}

body.hicop-admin-board-list .tbl_head01 thead th {
    padding: 14px 16px !important;
    text-align: left;
    font-weight: 800;
    font-size: 0.78rem !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #f8fafc !important;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%) !important;
    border-bottom: none !important;
}

body.hicop-admin-board-list .tbl_head01 tbody td {
    padding: 16px 16px !important;
    vertical-align: middle;
    border-bottom: 1px solid #eef2f7 !important;
    color: #334155 !important;
}

body.hicop-admin-board-list .tbl_head01 tbody tr:hover td {
    background: #f8fafc !important;
}

body.hicop-admin-board-list .tbl_head01 tbody tr:last-child td {
    border-bottom: none !important;
}

body.hicop-admin-board-list .td_subject .bo_tit a {
    color: #0f172a !important;
    font-weight: 600;
}

body.hicop-admin-board-list .empty_table {
    text-align: center;
    padding: 48px 16px !important;
    color: #94a3b8 !important;
}

/* 스킨 기본 .td_date { width:60px } 보다 넓게 — 시간 한 줄 유지 */
body.hicop-admin-board-list #bo_list .td_date,
body.hicop-admin-board-list #bo_gall .td_date {
    width: auto !important;
    min-width: 6.5rem !important;
    max-width: none !important;
    white-space: nowrap !important;
    text-align: center !important;
}

/* 페이지네이션 */
body.hicop-admin-board-list .pg_wrap {
    margin: 24px auto 16px !important;
    text-align: center !important;
    float: none !important;
}

body.hicop-admin-board-list .pg {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

body.hicop-admin-board-list .pg_page,
body.hicop-admin-board-list .pg_prev,
body.hicop-admin-board-list .pg_next,
body.hicop-admin-board-list .pg_start,
body.hicop-admin-board-list .pg_end,
body.hicop-admin-board-list strong.pg_current {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    min-width: 44px !important;
    height: 40px !important;
    margin: 0 !important;
    padding: 0 14px !important;
    border-radius: 10px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    line-height: 40px !important;
    text-align: center !important;
    border: 1px solid #e2e8f0 !important;
    background: #fff !important;
    background-image: none !important;
    color: #475569 !important;
    text-indent: 0 !important;
    overflow: visible !important;
    text-decoration: none !important;
    letter-spacing: 0 !important;
}

body.hicop-admin-board-list .pg_current,
body.hicop-admin-board-list strong.pg_current {
    background: #2b8cff !important;
    border-color: #2b8cff !important;
    color: #fff !important;
}

body.hicop-admin-board-list .pg_page:hover {
    border-color: #93c5fd !important;
    color: #1d4ed8 !important;
}

body.hicop-admin-board-list .pg_wrap .sound_only {
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    font-size: 0 !important;
}

/* 검색 패널 */
body.hicop-admin-board-list #bo_list .bo_sch_wrap,
body.hicop-admin-board-list #bo_gall .bo_sch_wrap {
    position: relative !important;
    inset: auto !important;
    height: auto !important;
    width: 100% !important;
    max-width: none !important;
    z-index: auto !important;
    display: none;
    justify-content: unset !important;
    align-items: unset !important;
    margin-top: 20px !important;
    clear: both;
}

body.hicop-admin-board-list .bo_sch {
    position: relative !important;
    inset: auto !important;
    max-width: 100% !important;
    transform: none !important;
    box-shadow:
        0 8px 32px rgba(15, 23, 42, 0.1),
        0 2px 8px rgba(15, 23, 42, 0.04) !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 20px 24px !important;
    margin: 0 !important;
    background: #f8fafc !important;
}

body.hicop-admin-board-list .bo_sch h3 {
    font-size: 0.92rem !important;
    font-weight: 800 !important;
    margin: 0 0 14px !important;
    color: #0f172a !important;
}

body.hicop-admin-board-list .bo_sch select[name="sfl"] {
    min-height: 48px !important;
    padding: 0 14px !important;
    border-radius: 12px !important;
    border: 1px solid #cbd5e1 !important;
    background: #fff !important;
    font-size: 0.92rem !important;
}

body.hicop-admin-board-list .sch_bar {
    display: flex !important;
    align-items: center;
    gap: 10px;
    flex: 1;
}

body.hicop-admin-board-list .sch_input {
    flex: 1 !important;
    min-height: 48px !important;
    border-radius: 12px !important;
    border: 1px solid #cbd5e1 !important;
    padding: 0 16px !important;
    font-size: 1rem !important;
}

body.hicop-admin-board-list .sch_btn {
    min-width: 52px !important;
    height: 48px !important;
    border-radius: 12px !important;
    background: #2563eb !important;
    border: none !important;
    color: #fff !important;
}

body.hicop-admin-board-list .bo_sch_cls {
    position: absolute !important;
    top: 16px;
    right: 16px;
    border-radius: 10px !important;
}

body.hicop-admin-board-list .bo_sch_bg {
    display: none !important;
}

/* 갤러리 목록 */
body.hicop-admin-board-list #bo_gall {
    padding: 28px !important;
    box-sizing: border-box;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    margin-bottom: 48px;
}

body.hicop-admin-board-list #gall_ul.gall_ul,
body.hicop-admin-board-list #gall_ul {
    gap: 20px !important;
}

@media (max-width: 768px) {
    body.hicop-admin-board-list #bo_list {
        padding: 16px !important;
        margin: 16px auto 32px !important;
        border-radius: 16px !important;
    }

    body.hicop-admin-board-list #bo_btn_top,
    body.hicop-admin-board-list .bo_fx {
        flex-direction: column;
        align-items: stretch !important;
    }
}

/* ----- Admin dashboard (admin-dashboard.css) ----- */
/* /sub/admin.php 하이캅 관리자 대시보드 */

.hicop-admin-dashboard {
    min-height: calc(100vh - 140px);
    background: linear-gradient(180deg, #0b1220 0%, #0f172a 40%, #0b1220 100%);
    color: #e2e8f0;
    padding: 0 0 72px;
    margin-top: -1px;
}

.hicop-admin-dashboard__toolbar {
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.hicop-admin-dashboard__toolbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.hicop-admin-dashboard__brand {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.02em;
    margin: 0;
}

.hicop-admin-dashboard__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.hicop-admin-dashboard__nav a {
    display: inline-block;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    border-radius: 10px;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.hicop-admin-dashboard__nav a:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
}

.hicop-admin-dashboard__lead {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 28px;
}

.hicop-admin-dashboard__lead h2 {
    font-size: 1.65rem;
    font-weight: 800;
    color: #f8fafc;
    margin: 0 0 8px;
    letter-spacing: -0.03em;
}

.hicop-admin-dashboard__lead p {
    margin: 0;
    font-size: 0.98rem;
    color: rgba(226, 232, 240, 0.7);
}

.hicop-admin-dashboard__grid-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 48px;
}

.hicop-admin-dashboard__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.hicop-admin-dash-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 20px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease,
        background 0.2s ease;
}

.hicop-admin-dash-card:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.45);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hicop-admin-dash-card__badge {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(148, 163, 184, 0.9);
    margin-bottom: 12px;
}

.hicop-admin-dash-card__icon {
    font-size: 1.85rem;
    line-height: 1;
}

.hicop-admin-dash-card__title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #f1f5f9;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.hicop-admin-dash-card__desc {
    font-size: 0.875rem;
    color: rgba(203, 213, 225, 0.75);
    line-height: 1.55;
    margin: 0 0 20px;
    flex: 1;
}

.hicop-admin-dash-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
}

.hicop-admin-dash-card__count {
    font-size: 1.35rem;
    font-weight: 800;
    color: #38bdf8;
}

.hicop-admin-dashboard__foot {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.hicop-admin-dashboard__foot a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.95);
    text-decoration: none;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.hicop-admin-dashboard__foot a:hover {
    color: #e2e8f0;
    border-color: rgba(148, 163, 184, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.hicop-admin-denied {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    background: #0f172a;
}

.hicop-admin-denied__box {
    max-width: 420px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 20px;
    padding: 40px 32px;
}

.hicop-admin-denied__box h2 {
    color: #f8fafc;
    font-size: 1.25rem;
    margin: 0 0 12px;
}

.hicop-admin-denied__box p {
    color: #94a3b8;
    margin: 0 0 24px;
    line-height: 1.6;
}

.hicop-admin-denied__box a {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary, #3498db);
    color: #fff;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
}

@media (max-width: 640px) {
    .hicop-admin-dashboard__toolbar-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .hicop-admin-dashboard__nav {
        justify-content: flex-start;
    }
}

/* ----- Sub0501 extras (style1.css) ----- */
.sub0501 .sub0501-overview-loc {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
}
.sub0501 .sub0501-overview-loc__col {
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.sub0501 .sub0501-overview-loc__card {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}
.sub0501 .sub0501-kakao-map {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    width: 100%;
    line-height: 0;
}
.sub0501 .sub0501-kakao-map__img-wrap {
    position: relative;
    flex: 1 1 auto;
    min-height: 120px;
    overflow: hidden;
    display: block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.sub0501 .sub0501-kakao-map__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
}
.sub0501 .sub0501-kakao-map__pinbox {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    max-width: calc(100% - 20px);
    transform: translate(-50%, -100%);
    pointer-events: none;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.2));
}
.sub0501 .sub0501-kakao-map__addr {
    display: block;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.45;
    text-align: center;
    word-break: keep-all;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.sub0501 .sub0501-kakao-map__pin-body {
    fill: var(--primary, #0ea5e9);
    stroke: #fff;
    stroke-width: 0.75;
}
.sub0501 .sub0501-kakao-map__pin-dot {
    fill: #fff;
}
.sub0501 .sub0501-kakao-map__bar {
    flex-shrink: 0;
    line-height: normal;
}
@media (max-width: 1024px) {
    .sub0501 .sub0501-overview-loc {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sub0501 .sub0501-kakao-map__img-wrap {
        flex: 0 0 auto;
        min-height: 0;
        aspect-ratio: 1008 / 620;
    }
    .sub0501 .sub0501-kakao-map {
        flex: 0 0 auto;
    }
}

/* ----- SMS premium / reveal (style1.css) ----- */

.reveal-up {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    filter: blur(10px);
    transition: 
        opacity 2.2s cubic-bezier(0.2, 0.8, 0.2, 1), 
        transform 2.2s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 2.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform, filter;
}

/* JS 미지원 환경 대비 */
.no-js .reveal-up {
    opacity: 1;
    transform: none;
    filter: none;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}


/* 빠른 상담 문의 (SMS) - 다크 임머시브 디자인 */
.sms-premium-section {
    background: #0a1128;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.sms-premium-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.sms-premium-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.sms-premium-content h3 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.05em;
}

.sms-premium-content h3 span {
    color: var(--primary);
}

.sms-premium-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 60px;
    font-weight: 400;
}

.sms-premium-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.sms-premium-form .input-group {
    flex: 1;
    text-align: left;
}

.sms-premium-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sms-premium-form input {
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 0 20px;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.sms-premium-form input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.2);
}

.sms-premium-form .sms-send-btn {
    width: 200px;
    height: 60px;
    margin-top: 0;
    border-radius: 15px;
    background: var(--primary);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.3);
}

.sms-premium-form .sms-send-btn:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

/* sub/sms_premium_section.php · customer1(write_update_online) 연동 */
.sms-premium-form--online {
    flex-wrap: wrap;
    align-items: flex-end;
}
.sms-premium-form--online .sms-premium-kicker {
    flex: 0 0 100%;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.08em;
    margin: 0 0 4px;
    text-transform: uppercase;
}
.sms-premium-form--online .sms-premium-online-note {
    flex: 0 0 100%;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin: 8px 0 0;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .sms-premium-form { flex-direction: column; padding: 40px; }
    .sms-premium-form .input-group { width: 100%; }
    .sms-premium-form .sms-send-btn { width: 100%; }
    .sms-premium-content h3 { font-size: 36px; }
}


@media (max-width: 1024px) {
    .phone-apply-box { flex-direction: column; text-align: center; gap: 24px; padding: 40px; }
    .phone-apply-box .number { font-size: 42px; }
    .sms-grid { grid-template-columns: 1fr; gap: 40px; }
}


.sms-premium-form .sms-send-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}
.sms-label-online {
  display: block;
}
.sms-premium-submit-wrap {
  flex: 0 0 auto;
}

/* Captcha — override main.css img/button reset for GnuBoard kcaptcha */
#captcha {
  display: inline-block;
  position: relative;
  max-width: 100%;
  vertical-align: top;
  box-sizing: border-box;
}

#captcha legend {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999em;
  overflow: hidden;
}

#captcha #captcha_img {
  display: inline-block;
  width: auto;
  max-width: none;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 1px solid #898989;
  vertical-align: top;
}

#captcha #captcha_key {
  display: inline-block;
  box-sizing: border-box;
  width: 90px;
  height: 40px;
  margin: 0 0 0 3px;
  padding: 0 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  font-size: 1.333em;
  font-weight: 700;
  text-align: center;
  vertical-align: top;
  color: #111;
}

#captcha #captcha_mp3,
#captcha #captcha_reload {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background-color: transparent;
  background-image: url("../img/captcha2.png");
  background-repeat: no-repeat;
  vertical-align: top;
  overflow: hidden;
  cursor: pointer;
  text-indent: -999px;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

#captcha #captcha_mp3 {
  background-position: 0 0;
}

#captcha #captcha_reload {
  background-position: 0 -40px;
}

#captcha #captcha_info {
  display: block;
  margin: 5px 0 0;
  font-size: 0.95em;
  letter-spacing: -0.05em;
  color: #333;
  line-height: 1.4;
}

#formmail-write .form-group--captcha {
  align-items: flex-start;
}

#formmail-write .form-group--captcha > label {
  padding-top: 10px;
  line-height: 1.3;
  white-space: nowrap;
}

@media (max-width: 768px) {
  #captcha #captcha_img {
    height: 36px;
  }

  #captcha #captcha_key {
    width: 72px;
    height: 36px;
    font-size: 1.1em;
  }

  #captcha #captcha_mp3,
  #captcha #captcha_reload {
    width: 36px;
    height: 36px;
  }
}


/* ============================================================
   Pest Landing (sub0304 바퀴벌레) - full landing layout
   ============================================================ */
.pest-landing {
  color: #1a1a1a;
}
.pest-landing .pl-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
/* 히어로 아래 섹션 컨테이너는 메인페이지 기준(1600px)에 맞춤 */
.pest-landing .pl-needs .pl-inner,
.pest-landing .pl-why .pl-inner,
.pest-landing .pl-solution .pl-inner,
.pest-landing .pl-process .pl-inner {
  max-width: 1600px;
  padding: 0 60px;
}
.pest-landing [data-trigger] {
  top: 40px;
}

/* 공통 배지/헤딩 */
.pest-landing .pl-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: #eaf4ff;
  color: #0b7fe0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
}
.pest-landing .pl-heading {
  margin: 18px 0 48px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
  word-break: keep-all;
}
.pest-landing .pl-heading b { color: #0b7fe0; }
.pest-landing .pl-heading--en { letter-spacing: .04em; }
.pest-landing .pl-heading--en span { color: #0b7fe0; }
.pest-landing .pl-heading--center { text-align: center; }

/* HERO */
.pest-landing .pl-hero {
  position: relative;
  height: 740px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: #111;
  color: #fff;
  overflow: hidden;
}
.pest-landing .pl-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.66) 40%, rgba(0,0,0,.4) 70%, rgba(0,0,0,.25) 100%);
}
.pest-landing .pl-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
.pest-landing .pl-hero__eyebrow {
  font-size: 15px;
  letter-spacing: .02em;
  color: #b9c2cc;
  margin-bottom: 18px;
  font-weight: 600;
}
.pest-landing .pl-hero__title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #ffffff;
  word-break: keep-all;
}
.pest-landing .pl-hero__desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  margin-bottom: 102px;
}

/* HERO 내부 탭 + breadcrumb */
.pest-landing .pl-hero__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.22);
  margin-bottom: 40px;
}
.pest-landing .pl-hero__tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}
.pest-landing .pl-hero__tabs li a {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  transition: color .2s ease;
}
.pest-landing .pl-hero__tabs li a:hover { color: #fff; }
.pest-landing .pl-hero__tabs li.active a {
  color: #fff;
  font-weight: 700;
}
.pest-landing .pl-hero__crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}
.pest-landing .pl-hero__crumb i { font-style: normal; color: rgba(255,255,255,.35); }
.pest-landing .pl-hero__crumb .current { color: rgba(255,255,255,.85); font-weight: 600; }

.pest-landing .pl-hero__btn {
  display: inline-block;
  padding: 15px 40px;
  background: #1f8aef;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  transition: background .2s ease, transform .2s ease;
}
.pest-landing .pl-hero__btn:hover {
  background: #0a6dc0;
  transform: translateY(-2px);
}
.pest-landing .pl-hero__frog {
  position: absolute;
  right: max(24px, 4vw);
  bottom: 0;
  z-index: 2;
  width: min(300px, 24vw);
  pointer-events: none;
  line-height: 0;
  animation: frogBob 3.5s ease-in-out infinite alternate;
}
.pest-landing .pl-hero__frog img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.4));
}

/* 섹션 개구리 */
.pest-landing .pl-needs,
.pest-landing .pl-why,
.pest-landing .pl-solution {
  position: relative;
}
.pest-landing .pl-frog {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  line-height: 0;
}
.pest-landing .pl-frog img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.12));
}
.pest-landing .pl-frog--needs {
  right: 2%;
  bottom: 32px;
  width: min(170px, 15vw);
}
.pest-landing .pl-frog--why {
  left: 1.5%;
  bottom: 40px;
  width: min(170px, 15vw);
}
.pest-landing .pl-frog--solution {
  right: 2%;
  top: 70px;
  width: min(160px, 14vw);
}

/* MEET YOUR NEEDS */
.pest-landing .pl-needs {
  padding: 100px 0;
  text-align: center;
}
.pest-landing .pl-needs__head {
  margin-bottom: 56px;
}
.pest-landing .pl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #0b7fe0;
}
.pest-landing .pl-eyebrow i {
  display: block;
  width: 28px;
  height: 1px;
  background: #0b7fe0;
  opacity: .6;
}
.pest-landing .pl-needs__title {
  margin-top: 18px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.35;
  color: #14181d;
  word-break: keep-all;
}
.pest-landing .pl-needs__title b {
  color: #0b7fe0;
  font-weight: 800;
}
.pest-landing .pl-needs__sub {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #7a828b;
  word-break: keep-all;
}
.pest-landing .pl-needs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}
.pest-landing .pl-need__img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 22px;
}
.pest-landing .pl-need__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.pest-landing .pl-need:hover .pl-need__img img { transform: scale(1.05); }
.pest-landing .pl-need h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}
.pest-landing .pl-need p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  word-break: keep-all;
}

/* WHY */
.pest-landing .pl-why {
  padding: 100px 0;
  background: #f5f7fa;
}
.pest-landing .pl-why__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.pest-landing .pl-why__intro { position: sticky; top: 100px; }
.pest-landing .pl-why__intro .pl-heading { margin-bottom: 20px; }
.pest-landing .pl-why__intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  word-break: keep-all;
}
.pest-landing .pl-btn-outline {
  display: inline-block;
  padding: 13px 30px;
  border: 1px solid #0b7fe0;
  border-radius: 6px;
  color: #0b7fe0;
  font-size: 15px;
  font-weight: 600;
  transition: all .2s ease;
}
.pest-landing .pl-btn-outline:hover { background: #0b7fe0; color: #fff; }
.pest-landing .pl-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pest-landing .pl-why__card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pest-landing .pl-why__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.pest-landing .pl-why__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.pest-landing .pl-why__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pest-landing .pl-why__text { padding: 22px 24px 26px; }
.pest-landing .pl-why__text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}
.pest-landing .pl-why__text p {
  font-size: 14px;
  line-height: 1.65;
  color: #777;
  word-break: keep-all;
}

/* SOLUTION */
.pest-landing .pl-solution {
  padding: 100px 0;
  text-align: center;
}
.pest-landing .pl-solution__head { margin-bottom: 56px; }
.pest-landing .pl-solution__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}
.pest-landing .pl-sol {
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(17,24,31,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pest-landing .pl-sol:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(17,24,31,.12);
}
.pest-landing .pl-sol__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.pest-landing .pl-sol__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.pest-landing .pl-sol:hover .pl-sol__img img { transform: scale(1.07); }
.pest-landing .pl-sol__no {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0b7fe0;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 4px 12px rgba(11,127,224,.4);
}
.pest-landing .pl-sol__body { padding: 22px 22px 26px; }
.pest-landing .pl-sol__body h3 {
  font-size: 19px;
  font-weight: 700;
  color: #14181d;
  margin-bottom: 10px;
}
.pest-landing .pl-sol__body p {
  font-size: 14px;
  line-height: 1.65;
  color: #7a828b;
  word-break: keep-all;
}

/* PROCESS */
.pest-landing .pl-process {
  padding: 100px 0 120px;
  background: #f5f7fa;
}
.pest-landing .pl-steps {
  max-width: 760px;
  margin: 0 auto;
  counter-reset: step;
}
.pest-landing .pl-step {
  display: flex;
  align-items: center;
  gap: 28px;
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
  position: relative;
}
.pest-landing .pl-step:not(:last-child) { margin-bottom: 56px; }
.pest-landing .pl-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  width: 22px;
  height: 22px;
  transform: translateX(-50%) rotate(45deg);
  border-right: 3px solid #c7d3e0;
  border-bottom: 3px solid #c7d3e0;
}
.pest-landing .pl-step__img {
  flex: 0 0 200px;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
}
.pest-landing .pl-step__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pest-landing .pl-step__no {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #0b7fe0;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.pest-landing .pl-step__body h3 {
  font-size: 21px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}
.pest-landing .pl-step__body p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  word-break: keep-all;
}
.pest-landing .pl-process__cta {
  text-align: center;
  margin-top: 64px;
}

/* 태블릿 */
@media (max-width: 1024px) {
  .pest-landing .pl-why__inner { grid-template-columns: 1fr; gap: 40px; }
  .pest-landing .pl-why__intro { position: static; }
  .pest-landing .pl-hero__title { font-size: 38px; }
  .pest-landing .pl-needs .pl-inner,
  .pest-landing .pl-why .pl-inner,
  .pest-landing .pl-solution .pl-inner,
  .pest-landing .pl-process .pl-inner {
    padding: 0 24px;
  }
}

/* 모바일 */
@media (max-width: 768px) {
  .pest-landing .pl-inner { padding: 0 18px; }
  .pest-landing .pl-needs .pl-inner,
  .pest-landing .pl-why .pl-inner,
  .pest-landing .pl-solution .pl-inner,
  .pest-landing .pl-process .pl-inner {
    padding: 0 18px;
  }
  .pest-landing .pl-heading { font-size: 24px; margin: 14px 0 32px; }

  .pest-landing .pl-hero { height: 640px; }
  .pest-landing .pl-hero__inner { padding-top: 0; padding-bottom: 0; }
  .pest-landing .pl-hero__eyebrow { font-size: 13px; margin-bottom: 12px; }
  .pest-landing .pl-hero__title { font-size: 27px; margin-bottom: 16px; }
  .pest-landing .pl-hero__desc { font-size: 14px; margin-bottom: 24px; }
  .pest-landing .pl-hero__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 18px;
    margin-bottom: 28px;
  }
  .pest-landing .pl-hero__tabs { gap: 14px 16px; }
  .pest-landing .pl-hero__tabs li a { font-size: 14px; }
  .pest-landing .pl-hero__crumb { font-size: 12px; }
  .pest-landing .pl-hero__btn { padding: 13px 30px; font-size: 15px; }
  .pest-landing .pl-hero__frog { width: min(120px, 30vw); right: 12px; }
  .pest-landing .pl-frog--needs { width: min(90px, 24vw); right: 8px; bottom: 16px; opacity: .92; }
  .pest-landing .pl-frog--why { width: min(90px, 24vw); left: 8px; bottom: 16px; opacity: .92; }
  .pest-landing .pl-frog--solution { width: min(88px, 22vw); right: 8px; top: 20px; opacity: .92; }

  .pest-landing .pl-needs { padding: 60px 0; }
  .pest-landing .pl-needs__head { margin-bottom: 36px; }
  .pest-landing .pl-needs__title { font-size: 24px; margin-top: 14px; }
  .pest-landing .pl-needs__sub { font-size: 14px; margin-top: 14px; }
  .pest-landing .pl-eyebrow { font-size: 12px; }
  .pest-landing .pl-needs__grid { grid-template-columns: 1fr; gap: 28px; }

  .pest-landing .pl-why { padding: 60px 0; }
  .pest-landing .pl-why__grid { grid-template-columns: 1fr; gap: 18px; }

  .pest-landing .pl-solution { padding: 60px 0; }
  .pest-landing .pl-solution__head { margin-bottom: 36px; }
  .pest-landing .pl-solution__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pest-landing .pl-sol__body { padding: 16px 16px 20px; }
  .pest-landing .pl-sol__body h3 { font-size: 16px; }
  .pest-landing .pl-sol__body p { font-size: 13px; }
  .pest-landing .pl-sol__no { width: 34px; height: 34px; font-size: 13px; top: 10px; left: 10px; }

  .pest-landing .pl-process { padding: 60px 0 80px; }
  .pest-landing .pl-step { flex-direction: column; align-items: stretch; gap: 16px; padding: 18px; }
  .pest-landing .pl-step__img { flex: none; width: 100%; aspect-ratio: 16 / 9; }
  .pest-landing .pl-step:not(:last-child) { margin-bottom: 46px; }
  .pest-landing .pl-step:not(:last-child)::after { bottom: -34px; width: 18px; height: 18px; }
  .pest-landing .pl-step__body h3 { font-size: 18px; }

  .pest-landing .pl-masonry-sec { padding: 48px 0 80px; }
  .pest-landing .pl-masonry { column-count: 2; column-gap: 12px; }
  .pest-landing .pl-masonry__item { margin-bottom: 12px; }
  .pest-landing .pl-masonry__item:nth-child(3n+1) .pl-masonry__placeholder { aspect-ratio: 3 / 4; }
  .pest-landing .pl-masonry__item:nth-child(3n+2) .pl-masonry__placeholder { aspect-ratio: 4 / 3; }
  .pest-landing .pl-masonry__item:nth-child(3n) .pl-masonry__placeholder { aspect-ratio: 1 / 1; }
}

/* sub0601 — Masonry gallery */
.pest-landing .pl-masonry-sec {
  position: relative;
  padding: 72px 0 120px;
  background: #fff;
}
.pest-landing .pl-masonry-sec__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  padding: 0 60px;
}
.pest-landing .pl-frog--masonry-top {
  right: 1.5%;
  top: 40px;
  width: min(150px, 13vw);
}
.pest-landing .pl-frog--masonry-mid {
  left: 1%;
  top: 48%;
  width: min(140px, 12vw);
}
.pest-landing .pl-frog--masonry-btm {
  right: 2%;
  bottom: 48px;
  width: min(160px, 14vw);
}
.pest-landing .pl-masonry {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 4;
  column-gap: 16px;
}
.pest-landing .pl-masonry__item {
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: 4px;
  overflow: hidden;
  background: #f0f2f5;
}
.pest-landing .pl-masonry__trigger img {
  background-color: #e8eef4;
  content-visibility: auto;
}
.pest-landing .pl-masonry__item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .35s ease;
}
.pest-landing .pl-masonry__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  line-height: 0;
  overflow: hidden;
}
.pest-landing .pl-masonry__trigger:hover img,
.pest-landing .pl-masonry__trigger:focus-visible img {
  transform: scale(1.06);
}
.pest-landing .pl-masonry__trigger:focus-visible {
  outline: 2px solid #1f8aef;
  outline-offset: 2px;
}
.pest-landing .pl-masonry__empty {
  margin: 0;
  padding: 80px 0;
  text-align: center;
  font-size: 16px;
  color: #8a929a;
}
.pest-landing .pl-masonry__placeholder {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #e8ecf1 0%, #f5f7fa 100%);
}

/* Lightbox */
html.pl-lightbox-open {
  overflow: hidden;
}
.pl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.pl-lightbox[hidden] {
  display: none !important;
}
.pl-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.pl-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 18, .86);
  cursor: zoom-out;
}
.pl-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
}
.pl-lightbox__figure {
  margin: 0;
  max-width: 100%;
  text-align: center;
  transform: scale(.96);
  transition: transform .22s ease;
}
.pl-lightbox.is-open .pl-lightbox__figure {
  transform: scale(1);
}
.pl-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .45);
  background: #111;
}
.pl-lightbox__caption {
  display: none;
}
.pl-lightbox__close,
.pl-lightbox__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.pl-lightbox__close:hover,
.pl-lightbox__nav:hover {
  background: rgba(255, 255, 255, .22);
}
.pl-lightbox__close {
  top: -8px;
  right: -8px;
  z-index: 2;
}
.pl-lightbox__nav--prev {
  left: -56px;
}
.pl-lightbox__nav--next {
  right: -56px;
}

@media (max-width: 900px) {
  .pl-lightbox {
    padding: 16px;
  }
  .pl-lightbox__nav--prev,
  .pl-lightbox__nav--next {
    left: auto;
    right: auto;
    bottom: -8px;
    top: auto;
  }
  .pl-lightbox__nav--prev { left: 8px; }
  .pl-lightbox__nav--next { right: 8px; }
  .pl-lightbox__close {
    top: -4px;
    right: 0;
  }
  .pl-lightbox__img {
    max-height: calc(100vh - 160px);
  }
}
.pest-landing .pl-masonry__item:nth-child(3n+1) .pl-masonry__placeholder { aspect-ratio: 3 / 4; }
.pest-landing .pl-masonry__item:nth-child(3n+2) .pl-masonry__placeholder { aspect-ratio: 4 / 3; }
.pest-landing .pl-masonry__item:nth-child(3n) .pl-masonry__placeholder { aspect-ratio: 1 / 1; }

@media (max-width: 1200px) {
  .pest-landing .pl-masonry-sec__inner { padding: 0 24px; }
  .pest-landing .pl-masonry { column-count: 3; column-gap: 14px; }
  .pest-landing .pl-masonry__item { margin-bottom: 14px; }
}

@media (max-width: 768px) {
  .pest-landing .pl-masonry-sec { padding: 48px 0 80px; }
  .pest-landing .pl-masonry-sec__inner { padding: 0 18px; }
  .pest-landing .pl-masonry { column-count: 2; column-gap: 12px; }
  .pest-landing .pl-masonry__item { margin-bottom: 12px; }
  .pest-landing .pl-frog--masonry-top { width: min(88px, 22vw); right: 8px; top: 16px; opacity: .92; }
  .pest-landing .pl-frog--masonry-mid { width: min(84px, 20vw); left: 6px; top: 46%; opacity: .92; }
  .pest-landing .pl-frog--masonry-btm { width: min(90px, 22vw); right: 8px; bottom: 20px; opacity: .92; }
}




/* 글쓰기 옵션(html/공지/비밀글 등) 전체 숨김 */
#bo_w .bo_v_option,
#bo_w .write_div:has(.bo_v_option),
#bo_w .on-field:has(.bo_v_option),
#fwrite .bo_v_option,
#fwrite .write_div:has(.bo_v_option),
#fwrite .on-field:has(.bo_v_option),
#qa_w li:has(#html),
#qa_w li:has(#qa_html),
#qa_w li:has(#notice),
#qa_w li:has(#mail),
#qa_w li:has(#secret),
#qa_w li:has(input[name="html"]),
#qa_w li:has(input[name="qa_html"]),
#qa_w li:has(input[name="notice"]),
#qa_w li:has(input[name="mail"]),
#qa_w li:has(input[name="secret"]),
.bo_w_select + .write_div:has(.bo_v_option) {
  display: none !important;
}
