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

a {
  text-decoration: none;
}

ul,
li {
  list-style-type: none;
}

html,
body {
  height: auto;
  font-family: "Pretendard", sans-serif;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}


:root {
  --main-color: #000;
}

.pretendard {
  font-family: "Pretendard", sans-serif;
}

/* header 소스 */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.header {
  max-width: 1780px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.header-menu {
  display: flex;
  gap: 55px;
  align-items: center;
}

.header-menu__list {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.header-menu__list a {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  transition: color 0.25s ease;
}

.header-menu__list a:hover {
  color: #000;
}

.tel{
  display: flex;
  gap: 10px;
}

.tel a {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
}

#wrap {
  position: relative;
}

main {
}

/* footer */
.footer{
  background:#000;
  color:#fff;
  padding:100px 0;
}

.footer__inner{
  max-width:1780px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
}

.footer__left{
  display:flex;
  gap:55px;
  min-width:0;
}

.footer__logo{
  width:100%;
  height:auto;
  display:block;
}

.footer__info{
  font-size:16px;
  line-height:1.5;
  word-break: keep-all;
}

.footer__name{
  font-weight:600;
  margin:0 0 15px;
}

.footer__notice{
  margin:15px 0;
  font-size:14px;
  opacity: 0.7;
}

.footer__copy{
  font-size:16px;
}

.footer__right{
  text-align:right;
  min-width:260px;
}

.footer__call{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:15px;
}

.footer__call-num{
  font-size:34px;
  font-weight:600;
  line-height:1.5;
  text-decoration:none;
  color: #fff;
}

.header-hamburger {
  display: none;
  width: 21px;
  height: 18px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.header-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header-hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.header-hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-dim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
}

.mobile-nav-title {
  font-size: 18px;
}

.mobile-nav-close {
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.mobile-nav-close span {
  font-family: "Pretendard", sans-serif;
  font-weight: 200;
  color: #000;
  opacity: 0.4;
}

.mobile-nav-list {
  padding: 16px 20px;
  font-size: 15px;
}

.mobile-nav-list li + li {
  margin-top: 14px;
}

.mobile-nav-list a {
  text-decoration: none;
  color: #111;
}

.mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav-dim.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}


.display-pc {
}

.display-mo {
  display: none;
}


.pc-view {
}

.mo-view {
  display: none;
}

.br-mo {
  display: none;
}

@media (max-width: 1780px) {
  .header {
    padding: 10px 20px;
  }

  .footer {
    padding: 100px 20px;
  }
}

@media (max-width: 1250px) {
  .footer__inner {
    flex-direction: column;
    gap: 30px;
  }

  .footer__left {
    flex-direction: column;
    gap: 30px;
  }

  .footer__logo {
    max-width: 110px;
  }
}

@media (max-width: 1024px) {
  .pc-view {
    display: none;
  }

  .mo-view {
    display: block;
  }
}

@media (max-width: 768px) {
  .display-pc {
    display: none;
  }

  .display-mo {
    display: block;
  }

  .header-menu {
    display: none;
  }

  .tel {
    margin-left: auto;
    display: flex !important;
    gap: 5px;
  }

  .header-hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    flex-direction: column;
    gap: 7px;
  }

  .footer {
    padding: 50px 20px;
  }

  .footer__call {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
  }

  .footer__call img {
    max-width: 20px;
  }

  .footer__call-num {
    font-size: 30px;
  }

  .footer__info, .footer__copy {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  .br-pc {
    display: none;
  }

  .br-mo {
    display: inline-block;
  }

  .header-logo img {
    max-width: 78px;
  }

  .tel a {
    font-size: 18px;
  }

  .tel img {
    max-width: 15px;
  }

  .header-hamburger {
    margin-left: 10px;
  }
}